{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "provenance": [], "gpuType": "T4" }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "language_info": { "name": "python" }, "accelerator": "GPU" }, "cells": [ { "cell_type": "code", "source": [ "import sys\n", "import torch\n", "print(f\"Python version: {sys.version}, {sys.version_info} \")\n", "print(f\"Pytorch version: {torch.__version__} \")" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "msS1ksMCbcOZ", "outputId": "b3bde8e9-443a-44be-c91f-719370a1bda4" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Python version: 3.10.12 (main, Nov 6 2024, 20:22:13) [GCC 11.4.0], sys.version_info(major=3, minor=10, micro=12, releaselevel='final', serial=0) \n", "Pytorch version: 2.5.1+cu121 \n" ] } ] }, { "cell_type": "code", "source": [ "#Veo la version de CUDA y el tipo de GPU que estoy usando\n", "!nvidia-smi" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "yCnuiIXjbcLq", "outputId": "ded806f9-e4b8-4a20-f071-1970a5a5f45e" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Wed Nov 27 13:04:25 2024 \n", "+---------------------------------------------------------------------------------------+\n", "| NVIDIA-SMI 535.104.05 Driver Version: 535.104.05 CUDA Version: 12.2 |\n", "|-----------------------------------------+----------------------+----------------------+\n", "| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |\n", "| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |\n", "| | | MIG M. |\n", "|=========================================+======================+======================|\n", "| 0 Tesla T4 Off | 00000000:00:04.0 Off | 0 |\n", "| N/A 52C P8 10W / 70W | 0MiB / 15360MiB | 0% Default |\n", "| | | N/A |\n", "+-----------------------------------------+----------------------+----------------------+\n", " \n", "+---------------------------------------------------------------------------------------+\n", "| Processes: |\n", "| GPU GI CI PID Type Process name GPU Memory |\n", "| ID ID Usage |\n", "|=======================================================================================|\n", "| No running processes found |\n", "+---------------------------------------------------------------------------------------+\n" ] } ] }, { "cell_type": "code", "source": [ "#CLONO EL REPO Y ENTRO A LA CARPETA YOLOV7, NO ESTA EL MODELO PREENTRENADO EN ESA CARPETA\n", "!# Download YOLOv7 code\n", "!git clone https://github.com/WongKinYiu/yolov7\n", "%cd yolov7\n", "!ls" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "utxvpmuibcI7", "outputId": "82ca0ec4-ef33-404f-f13b-b47f00d6f602" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Cloning into 'yolov7'...\n", "remote: Enumerating objects: 1197, done.\u001b[K\n", "remote: Total 1197 (delta 0), reused 0 (delta 0), pack-reused 1197 (from 1)\u001b[K\n", "Receiving objects: 100% (1197/1197), 74.23 MiB | 30.63 MiB/s, done.\n", "Resolving deltas: 100% (520/520), done.\n", "/content/yolov7\n", "cfg\tdetect.py hubconf.py models\t requirements.txt tools\t utils\n", "data\texport.py inference paper\t scripts\t train_aux.py\n", "deploy\tfigure\t LICENSE.md README.md test.py\t train.py\n" ] } ] }, { "cell_type": "code", "source": [ "#DESCARGO EL MODELO PREENTRENADO\n", "!# Download trained weights\n", "!wget https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "KhApWfeKbcFG", "outputId": "4909256c-a8a2-477b-ce17-128ed8fe2a83" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "--2024-11-27 13:06:03-- https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt\n", "Resolving github.com (github.com)... 140.82.113.4\n", "Connecting to github.com (github.com)|140.82.113.4|:443... connected.\n", "HTTP request sent, awaiting response... 302 Found\n", "Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/511187726/b0243edf-9fb0-4337-95e1-42555f1b37cf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20241127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241127T130604Z&X-Amz-Expires=300&X-Amz-Signature=c2b6428c91d8f7ac1b8f43f59cb062573b8e14c136740f794716cc071a6537c5&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3Dyolov7.pt&response-content-type=application%2Foctet-stream [following]\n", "--2024-11-27 13:06:04-- https://objects.githubusercontent.com/github-production-release-asset-2e65be/511187726/b0243edf-9fb0-4337-95e1-42555f1b37cf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=releaseassetproduction%2F20241127%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241127T130604Z&X-Amz-Expires=300&X-Amz-Signature=c2b6428c91d8f7ac1b8f43f59cb062573b8e14c136740f794716cc071a6537c5&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3Dyolov7.pt&response-content-type=application%2Foctet-stream\n", "Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ...\n", "Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.108.133|:443... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 75587165 (72M) [application/octet-stream]\n", "Saving to: ‘yolov7.pt’\n", "\n", "yolov7.pt 100%[===================>] 72.08M 257MB/s in 0.3s \n", "\n", "2024-11-27 13:06:04 (257 MB/s) - ‘yolov7.pt’ saved [75587165/75587165]\n", "\n" ] } ] }, { "cell_type": "code", "source": [ "# EJECUTO LA RED CON LOS PARMS\n", "!# Detection\n", "!python detect.py --weights yolov7.pt --conf 0.25 --img-size 640 --source horses1.mp4 #inference/images/image3.jpg" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "xI5DiyI2bcAK", "outputId": "c8ae7a6b-ff6b-4675-d345-7def965fd821" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "Namespace(weights=['yolov7.pt'], source='horses1.mp4', img_size=640, conf_thres=0.25, iou_thres=0.45, device='', view_img=False, save_txt=False, save_conf=False, nosave=False, classes=None, agnostic_nms=False, augment=False, update=False, project='runs/detect', name='exp', exist_ok=False, no_trace=False)\n", "YOLOR 🚀 v0.1-128-ga207844 torch 2.5.1+cu121 CUDA:0 (Tesla T4, 15102.0625MB)\n", "\n", "/content/yolov7/models/experimental.py:252: FutureWarning: You are using `torch.load` with `weights_only=False` (the current default value), which uses the default pickle module implicitly. It is possible to construct malicious pickle data which will execute arbitrary code during unpickling (See https://github.com/pytorch/pytorch/blob/main/SECURITY.md#untrusted-models for more details). In a future release, the default value for `weights_only` will be flipped to `True`. This limits the functions that could be executed during unpickling. Arbitrary objects will no longer be allowed to be loaded via this mode unless they are explicitly allowlisted by the user via `torch.serialization.add_safe_globals`. We recommend you start setting `weights_only=True` for any use case where you don't have full control of the loaded file. Please open an issue on GitHub for any issues related to this experimental feature.\n", " ckpt = torch.load(w, map_location=map_location) # load\n", "Fusing layers... \n", "RepConv.fuse_repvgg_block\n", "RepConv.fuse_repvgg_block\n", "RepConv.fuse_repvgg_block\n", "Model Summary: 306 layers, 36905341 parameters, 6652669 gradients\n", " Convert model to Traced-model... \n", " traced_script_module saved! \n", " model is traced! \n", "\n", "/usr/local/lib/python3.10/dist-packages/torch/functional.py:534: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:3595.)\n", " return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]\n", "video 1/1 (1/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (560.3ms) NMS\n", "video 1/1 (2/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (3/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (4/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (5/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (6/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.1ms) Inference, (1.4ms) NMS\n", "video 1/1 (7/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (8/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.1ms) Inference, (1.5ms) NMS\n", "video 1/1 (9/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (10/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (11/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (12/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (13/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.3ms) NMS\n", "video 1/1 (14/867) /content/yolov7/horses1.mp4: 3 horses, Done. (23.5ms) Inference, (1.8ms) NMS\n", "video 1/1 (15/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (16/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (17/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (18/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (19/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (20/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (21/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (22/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (23/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (24/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (25/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (26/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (27/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (28/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (29/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (30/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (31/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (32/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (33/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (34/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (35/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (36/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (37/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (38/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (39/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (40/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (41/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.9ms) Inference, (1.8ms) NMS\n", "video 1/1 (42/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.9ms) Inference, (1.8ms) NMS\n", "video 1/1 (43/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.0ms) Inference, (1.7ms) NMS\n", "video 1/1 (44/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (45/867) /content/yolov7/horses1.mp4: 3 horses, Done. (17.1ms) Inference, (1.6ms) NMS\n", "video 1/1 (46/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (47/867) /content/yolov7/horses1.mp4: 3 horses, Done. (21.5ms) Inference, (3.6ms) NMS\n", "video 1/1 (48/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (49/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (50/867) /content/yolov7/horses1.mp4: 3 horses, Done. (17.0ms) Inference, (1.7ms) NMS\n", "video 1/1 (51/867) /content/yolov7/horses1.mp4: 3 horses, Done. (18.9ms) Inference, (1.5ms) NMS\n", "video 1/1 (52/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.7ms) Inference, (1.5ms) NMS\n", "video 1/1 (53/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (54/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (55/867) /content/yolov7/horses1.mp4: 3 horses, Done. (22.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (56/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.8ms) Inference, (1.4ms) NMS\n", "video 1/1 (57/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (58/867) /content/yolov7/horses1.mp4: 3 horses, Done. (21.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (59/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (60/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (61/867) /content/yolov7/horses1.mp4: 3 horses, Done. (18.9ms) Inference, (1.5ms) NMS\n", "video 1/1 (62/867) /content/yolov7/horses1.mp4: 3 horses, Done. (22.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (63/867) /content/yolov7/horses1.mp4: 3 horses, Done. (20.1ms) Inference, (1.8ms) NMS\n", "video 1/1 (64/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.4ms) Inference, (1.9ms) NMS\n", "video 1/1 (65/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (66/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (67/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (68/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (69/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (70/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (71/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (16.5ms) Inference, (1.6ms) NMS\n", "video 1/1 (72/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (18.5ms) Inference, (1.7ms) NMS\n", "video 1/1 (73/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (74/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (20.9ms) Inference, (1.8ms) NMS\n", "video 1/1 (75/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (76/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (22.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (77/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.9ms) NMS\n", "video 1/1 (78/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (79/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (80/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (25.6ms) Inference, (1.8ms) NMS\n", "video 1/1 (81/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (18.9ms) Inference, (1.6ms) NMS\n", "video 1/1 (82/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (19.6ms) Inference, (1.6ms) NMS\n", "video 1/1 (83/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (23.6ms) Inference, (1.7ms) NMS\n", "video 1/1 (84/867) /content/yolov7/horses1.mp4: 3 horses, Done. (18.1ms) Inference, (1.6ms) NMS\n", "video 1/1 (85/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (86/867) /content/yolov7/horses1.mp4: 3 horses, Done. (18.2ms) Inference, (4.9ms) NMS\n", "video 1/1 (87/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (88/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (89/867) /content/yolov7/horses1.mp4: 3 horses, Done. (28.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (90/867) /content/yolov7/horses1.mp4: 3 horses, Done. (20.0ms) Inference, (1.6ms) NMS\n", "video 1/1 (91/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (92/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (93/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (94/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (95/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (96/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (97/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (98/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (99/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (100/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (101/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (102/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (103/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (104/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (105/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (106/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (107/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (108/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (109/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (110/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (111/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (112/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (113/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (114/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (115/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (116/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (117/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (118/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (119/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (120/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (121/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (122/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (123/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (124/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (125/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (126/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (127/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (128/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (129/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (130/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (131/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (132/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (133/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (134/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (135/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (136/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (137/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (138/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (139/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (140/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (141/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (142/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (143/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (144/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (145/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (146/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (147/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (148/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (149/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (150/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (151/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (152/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (153/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (154/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (155/867) /content/yolov7/horses1.mp4: 4 horses, 1 sheep, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (156/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (157/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (158/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (159/867) /content/yolov7/horses1.mp4: 4 horses, 2 sheeps, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (160/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (161/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (162/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (163/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (164/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (165/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (166/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (167/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (168/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (169/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (170/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (171/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (172/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (173/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (174/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (175/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (176/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (177/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (178/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (179/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (180/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (181/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (182/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (183/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (184/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (185/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (186/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (187/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (188/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (189/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (190/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (191/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (192/867) /content/yolov7/horses1.mp4: 4 horses, Done. (17.1ms) Inference, (1.6ms) NMS\n", "video 1/1 (193/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (194/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (195/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (196/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (197/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (198/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (199/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (200/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (201/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (202/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.4ms) Inference, (1.2ms) NMS\n", "video 1/1 (203/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (204/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (205/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (206/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (207/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (208/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (209/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (210/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (211/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (212/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (213/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (214/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (215/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.4ms) Inference, (1.3ms) NMS\n", "video 1/1 (216/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (217/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (218/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (219/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (220/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (221/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (222/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (223/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (224/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (225/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (226/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (227/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (228/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (229/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (230/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (231/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (232/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (233/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (234/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (235/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (236/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (237/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (238/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (239/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (240/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (241/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (242/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (243/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (244/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (245/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (246/867) /content/yolov7/horses1.mp4: 4 horses, Done. (16.5ms) Inference, (1.7ms) NMS\n", "video 1/1 (247/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (248/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (249/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (250/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (251/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (252/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (253/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (254/867) /content/yolov7/horses1.mp4: 5 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (255/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (256/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (257/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (258/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.3ms) NMS\n", "video 1/1 (259/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.8ms) NMS\n", "video 1/1 (260/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (261/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (262/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (263/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (264/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (265/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (266/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (267/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (268/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (269/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (270/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (271/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (272/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (273/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (274/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (275/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (276/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (277/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (278/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (279/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (280/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (281/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (282/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (283/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (284/867) /content/yolov7/horses1.mp4: 4 horses, 1 sheep, 1 cow, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (285/867) /content/yolov7/horses1.mp4: 4 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (286/867) /content/yolov7/horses1.mp4: 4 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (287/867) /content/yolov7/horses1.mp4: 4 horses, 1 sheep, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (288/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (289/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (290/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.4ms) Inference, (1.2ms) NMS\n", "video 1/1 (291/867) /content/yolov7/horses1.mp4: 4 horses, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (292/867) /content/yolov7/horses1.mp4: 4 horses, 1 sheep, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (293/867) /content/yolov7/horses1.mp4: 4 horses, 1 sheep, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (294/867) /content/yolov7/horses1.mp4: 4 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (295/867) /content/yolov7/horses1.mp4: 4 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (296/867) /content/yolov7/horses1.mp4: 1 dog, 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (297/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (298/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (299/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (300/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (301/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (302/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (303/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (304/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (305/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (306/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (307/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (308/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (309/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (310/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (311/867) /content/yolov7/horses1.mp4: 4 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (312/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (313/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (314/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (315/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.1ms) Inference, (1.7ms) NMS\n", "video 1/1 (316/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (2.2ms) NMS\n", "video 1/1 (317/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (318/867) /content/yolov7/horses1.mp4: 3 horses, Done. (20.1ms) Inference, (1.6ms) NMS\n", "video 1/1 (319/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (320/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (321/867) /content/yolov7/horses1.mp4: 3 horses, Done. (20.8ms) Inference, (1.2ms) NMS\n", "video 1/1 (322/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (323/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.5ms) Inference, (1.7ms) NMS\n", "video 1/1 (324/867) /content/yolov7/horses1.mp4: 3 horses, Done. (22.0ms) Inference, (1.5ms) NMS\n", "video 1/1 (325/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (2.2ms) NMS\n", "video 1/1 (326/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (327/867) /content/yolov7/horses1.mp4: 3 horses, Done. (16.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (328/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, 1 sheep, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (329/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (330/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (18.1ms) Inference, (2.8ms) NMS\n", "video 1/1 (331/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.4ms) Inference, (1.9ms) NMS\n", "video 1/1 (332/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.9ms) Inference, (1.6ms) NMS\n", "video 1/1 (333/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (25.9ms) Inference, (1.5ms) NMS\n", "video 1/1 (334/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (19.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (335/867) /content/yolov7/horses1.mp4: 3 horses, 1 sheep, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (336/867) /content/yolov7/horses1.mp4: 3 horses, Done. (23.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (337/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.7ms) Inference, (1.7ms) NMS\n", "video 1/1 (338/867) /content/yolov7/horses1.mp4: 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (339/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (340/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (341/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, 1 sheep, 1 bear, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (342/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (343/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (344/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (345/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (346/867) /content/yolov7/horses1.mp4: 2 dogs, 3 horses, Done. (16.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (347/867) /content/yolov7/horses1.mp4: 2 dogs, 2 horses, Done. (16.5ms) Inference, (2.5ms) NMS\n", "video 1/1 (348/867) /content/yolov7/horses1.mp4: 3 horses, Done. (19.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (349/867) /content/yolov7/horses1.mp4: 3 horses, Done. (18.6ms) Inference, (8.7ms) NMS\n", "video 1/1 (350/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (351/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (352/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (18.7ms) Inference, (1.6ms) NMS\n", "video 1/1 (353/867) /content/yolov7/horses1.mp4: 1 dog, 3 horses, Done. (15.4ms) Inference, (1.6ms) NMS\n", "video 1/1 (354/867) /content/yolov7/horses1.mp4: 3 horses, 1 cow, Done. (18.1ms) Inference, (1.6ms) NMS\n", "video 1/1 (355/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, 1 cow, Done. (17.8ms) Inference, (1.6ms) NMS\n", "video 1/1 (356/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, 1 cow, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (357/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (18.9ms) Inference, (1.6ms) NMS\n", "video 1/1 (358/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.5ms) Inference, (1.6ms) NMS\n", "video 1/1 (359/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (20.6ms) Inference, (1.5ms) NMS\n", "video 1/1 (360/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (19.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (361/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (19.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (362/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (18.4ms) Inference, (1.7ms) NMS\n", "video 1/1 (363/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (17.0ms) Inference, (1.8ms) NMS\n", "video 1/1 (364/867) /content/yolov7/horses1.mp4: 2 dogs, 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (365/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.9ms) NMS\n", "video 1/1 (366/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (367/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (368/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (369/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (370/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (371/867) /content/yolov7/horses1.mp4: 1 dog, 1 horse, 1 bear, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (372/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (373/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (374/867) /content/yolov7/horses1.mp4: 1 dog, 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (375/867) /content/yolov7/horses1.mp4: 1 dog, 1 horse, 1 bear, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (376/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (377/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (378/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (379/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (380/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (381/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (382/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (383/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (384/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.4ms) Inference, (1.8ms) NMS\n", "video 1/1 (385/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (386/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (387/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (388/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (389/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (390/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (391/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (392/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (393/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (394/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (395/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (396/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (397/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (398/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (399/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.6ms) NMS\n", "video 1/1 (400/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (401/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (402/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (403/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (404/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (405/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (406/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (407/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (408/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (409/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (410/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (411/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (412/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (413/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (414/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (415/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (416/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (417/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (418/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (419/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (420/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (421/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (422/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (423/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (424/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (425/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (426/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (427/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (428/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (429/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (430/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (431/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (432/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (433/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (434/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.4ms) Inference, (1.1ms) NMS\n", "video 1/1 (435/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (436/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (437/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (438/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (439/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (440/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (441/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (442/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (443/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (444/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (445/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (446/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (447/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (448/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (449/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (450/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (451/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (452/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (453/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (454/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (455/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (456/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (457/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (458/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (459/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (460/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (461/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (462/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (463/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (464/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.7ms) NMS\n", "video 1/1 (465/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (466/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (467/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (468/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (469/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (470/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (471/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (472/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (473/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (474/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (475/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (3.4ms) NMS\n", "video 1/1 (476/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (477/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (478/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (479/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (480/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (481/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (482/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (483/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (484/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (485/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (486/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (487/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (488/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (489/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (490/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (491/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (492/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (493/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (494/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (495/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (496/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (497/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (498/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (499/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (500/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (501/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (502/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (503/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (504/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (505/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.9ms) NMS\n", "video 1/1 (506/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (507/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (508/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (509/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (510/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (511/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (512/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (513/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (514/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (515/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (516/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.5ms) Inference, (1.4ms) NMS\n", "video 1/1 (517/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (518/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (519/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (520/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (521/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (522/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (523/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (524/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (525/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (526/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (527/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (528/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (529/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (530/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (531/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (532/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (533/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (534/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (535/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (536/867) /content/yolov7/horses1.mp4: 1 person, 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (537/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (538/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (539/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (540/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (541/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (542/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (543/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (544/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (545/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (546/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (547/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (548/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (549/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (550/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (551/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (552/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (553/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (554/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (555/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (556/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (557/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (558/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (559/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (560/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (561/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (562/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (563/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (564/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (565/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (566/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.9ms) NMS\n", "video 1/1 (567/867) /content/yolov7/horses1.mp4: 1 horse, 1 sheep, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (568/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (569/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (570/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (571/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (572/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (573/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (574/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (575/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (576/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (577/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (578/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (579/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (580/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (581/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (582/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (583/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (584/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (585/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (586/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (587/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (588/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.4ms) Inference, (1.8ms) NMS\n", "video 1/1 (589/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (590/867) /content/yolov7/horses1.mp4: 1 horse, Done. (24.8ms) Inference, (1.7ms) NMS\n", "video 1/1 (591/867) /content/yolov7/horses1.mp4: 1 horse, Done. (17.9ms) Inference, (1.7ms) NMS\n", "video 1/1 (592/867) /content/yolov7/horses1.mp4: 1 horse, Done. (21.9ms) Inference, (1.5ms) NMS\n", "video 1/1 (593/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (594/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (595/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (596/867) /content/yolov7/horses1.mp4: 1 horse, Done. (19.7ms) Inference, (1.5ms) NMS\n", "video 1/1 (597/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (598/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (23.6ms) Inference, (1.6ms) NMS\n", "video 1/1 (599/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (600/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (601/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (602/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (603/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (604/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (605/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (606/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (607/867) /content/yolov7/horses1.mp4: 2 horses, Done. (17.5ms) Inference, (1.4ms) NMS\n", "video 1/1 (608/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.4ms) Inference, (1.5ms) NMS\n", "video 1/1 (609/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (17.9ms) Inference, (1.4ms) NMS\n", "video 1/1 (610/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (611/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (17.9ms) Inference, (1.7ms) NMS\n", "video 1/1 (612/867) /content/yolov7/horses1.mp4: 2 horses, 1 sheep, 1 bear, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (613/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (614/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (615/867) /content/yolov7/horses1.mp4: 2 horses, Done. (18.8ms) Inference, (1.5ms) NMS\n", "video 1/1 (616/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (617/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (18.1ms) Inference, (1.7ms) NMS\n", "video 1/1 (618/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (619/867) /content/yolov7/horses1.mp4: 2 horses, Done. (17.6ms) Inference, (5.8ms) NMS\n", "video 1/1 (620/867) /content/yolov7/horses1.mp4: 1 dog, 2 horses, Done. (16.2ms) Inference, (1.9ms) NMS\n", "video 1/1 (621/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (622/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (623/867) /content/yolov7/horses1.mp4: 2 horses, Done. (19.0ms) Inference, (1.8ms) NMS\n", "video 1/1 (624/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.7ms) Inference, (1.7ms) NMS\n", "video 1/1 (625/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (626/867) /content/yolov7/horses1.mp4: 2 horses, Done. (23.2ms) Inference, (1.6ms) NMS\n", "video 1/1 (627/867) /content/yolov7/horses1.mp4: 2 horses, Done. (18.8ms) Inference, (1.6ms) NMS\n", "video 1/1 (628/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (20.7ms) Inference, (1.6ms) NMS\n", "video 1/1 (629/867) /content/yolov7/horses1.mp4: 1 person, 1 horse, 1 cow, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (630/867) /content/yolov7/horses1.mp4: 1 person, 1 horse, 1 cow, Done. (23.8ms) Inference, (2.5ms) NMS\n", "video 1/1 (631/867) /content/yolov7/horses1.mp4: 1 person, 1 horse, 1 cow, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (632/867) /content/yolov7/horses1.mp4: 1 horse, Done. (18.7ms) Inference, (1.6ms) NMS\n", "video 1/1 (633/867) /content/yolov7/horses1.mp4: 1 horse, Done. (25.9ms) Inference, (2.6ms) NMS\n", "video 1/1 (634/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (635/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (636/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (2.1ms) NMS\n", "video 1/1 (637/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.6ms) Inference, (1.9ms) NMS\n", "video 1/1 (638/867) /content/yolov7/horses1.mp4: 1 horse, Done. (17.1ms) Inference, (2.8ms) NMS\n", "video 1/1 (639/867) /content/yolov7/horses1.mp4: 1 horse, Done. (22.5ms) Inference, (1.7ms) NMS\n", "video 1/1 (640/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (2.8ms) NMS\n", "video 1/1 (641/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (642/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (643/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (644/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (645/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (646/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (647/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (648/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (649/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (650/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (651/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (652/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (653/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (654/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (655/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (656/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (657/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (658/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (659/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (660/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (661/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (662/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.4ms) Inference, (1.6ms) NMS\n", "video 1/1 (663/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (664/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.4ms) Inference, (1.3ms) NMS\n", "video 1/1 (665/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (666/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.9ms) NMS\n", "video 1/1 (667/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (668/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (669/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (670/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (671/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (672/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (673/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (674/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (675/867) /content/yolov7/horses1.mp4: 1 horse, Done. (16.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (676/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (677/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.9ms) NMS\n", "video 1/1 (678/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (679/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (680/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (681/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (682/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (683/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (684/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (2.0ms) NMS\n", "video 1/1 (685/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (686/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (687/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (688/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (689/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (690/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (691/867) /content/yolov7/horses1.mp4: 1 horse, 1 sheep, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (692/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (693/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (694/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (695/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (696/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (697/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (698/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (699/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (700/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (701/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (702/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (703/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (704/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (705/867) /content/yolov7/horses1.mp4: 2 horses, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (706/867) /content/yolov7/horses1.mp4: 1 horse, 1 sheep, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (707/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (708/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (709/867) /content/yolov7/horses1.mp4: 1 horse, 2 cows, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (710/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (711/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (712/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (713/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (714/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (715/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, 1 bear, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (716/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (717/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (718/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (719/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (720/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (721/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (722/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (723/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (724/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (725/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (726/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (727/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (728/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (2.6ms) NMS\n", "video 1/1 (729/867) /content/yolov7/horses1.mp4: 1 horse, 2 cows, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (730/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.5ms) Inference, (1.3ms) NMS\n", "video 1/1 (731/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (732/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (733/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (734/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (735/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (736/867) /content/yolov7/horses1.mp4: 1 dog, 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (737/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (738/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (739/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (740/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (741/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (742/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (743/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (744/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (745/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (746/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (747/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (748/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (749/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.5ms) NMS\n", "video 1/1 (750/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (751/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (752/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (753/867) /content/yolov7/horses1.mp4: 2 horses, Done. (20.8ms) Inference, (1.4ms) NMS\n", "video 1/1 (754/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (755/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (756/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (2.1ms) NMS\n", "video 1/1 (757/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (758/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (759/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (760/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (761/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (762/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (763/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (764/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (765/867) /content/yolov7/horses1.mp4: 2 horses, Done. (18.0ms) Inference, (1.4ms) NMS\n", "video 1/1 (766/867) /content/yolov7/horses1.mp4: 1 horse, 1 cow, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (767/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (768/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (769/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (770/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (771/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (772/867) /content/yolov7/horses1.mp4: 2 horses, 1 cow, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (773/867) /content/yolov7/horses1.mp4: 2 horses, 2 cows, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (774/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (775/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (776/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (777/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (778/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (779/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (780/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (781/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (782/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (783/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (784/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (785/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.7ms) NMS\n", "video 1/1 (786/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (787/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (788/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (789/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (790/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (791/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (792/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (793/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (794/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (795/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (796/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (797/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (798/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (799/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.4ms) Inference, (1.6ms) NMS\n", "video 1/1 (800/867) /content/yolov7/horses1.mp4: 2 horses, Done. (16.8ms) Inference, (1.3ms) NMS\n", "video 1/1 (801/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (802/867) /content/yolov7/horses1.mp4: 2 horses, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (803/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (804/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (805/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (806/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (807/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (808/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (809/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (810/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.3ms) NMS\n", "video 1/1 (811/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (812/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (813/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (814/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (815/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (816/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (817/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (818/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (819/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (820/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (821/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.4ms) NMS\n", "video 1/1 (822/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (823/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (824/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (825/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (826/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (827/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (828/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.4ms) Inference, (1.4ms) NMS\n", "video 1/1 (829/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (830/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (831/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (832/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (833/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (834/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (835/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (836/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (837/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (838/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (839/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (840/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.6ms) NMS\n", "video 1/1 (841/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (842/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (843/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (844/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (845/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (846/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (847/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (848/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.1ms) NMS\n", "video 1/1 (849/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.5ms) NMS\n", "video 1/1 (850/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (851/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (852/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (853/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (854/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (855/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.4ms) NMS\n", "video 1/1 (856/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (857/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (858/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.8ms) NMS\n", "video 1/1 (859/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (860/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.1ms) NMS\n", "video 1/1 (861/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.3ms) NMS\n", "video 1/1 (862/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (863/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.3ms) Inference, (1.2ms) NMS\n", "video 1/1 (864/867) /content/yolov7/horses1.mp4: 1 horse, Done. (15.2ms) Inference, (1.2ms) NMS\n", "video 1/1 (865/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.3ms) NMS\n", "video 1/1 (866/867) /content/yolov7/horses1.mp4: 1 bear, Done. (18.0ms) Inference, (1.7ms) NMS\n", "video 1/1 (867/867) /content/yolov7/horses1.mp4: 1 horse, 1 bear, Done. (15.3ms) Inference, (1.8ms) NMS\n", "Done. (42.769s)\n" ] } ] }, { "cell_type": "code", "source": [ "# define helper functions to show images\n", "def imShow(path):\n", " import cv2\n", " import matplotlib.pyplot as plt\n", " %matplotlib inline\n", "\n", " image = cv2.imread(path)\n", " height, width = image.shape[:2]\n", " resized_image = cv2.resize(image,(3*width, 3*height), interpolation = cv2.INTER_CUBIC)\n", "\n", " fig = plt.gcf()\n", " fig.set_size_inches(18, 10)\n", " plt.axis(\"off\")\n", " plt.imshow(cv2.cvtColor(resized_image, cv2.COLOR_BGR2RGB))\n", " plt.show()" ], "metadata": { "id": "bp7rVA0nbn-O" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "imShow(\"runs/detect/exp6/horses1.xxx\")" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 277 }, "id": "aId1iLXtb7KA", "outputId": "ed4ed2bf-d752-42ca-8dc0-1a813caaff1f" }, "execution_count": null, "outputs": [ { "output_type": "error", "ename": "AttributeError", "evalue": "'NoneType' object has no attribute 'shape'", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mimShow\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"runs/detect/exp6/horses1.mp4\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;32m\u001b[0m in \u001b[0;36mimShow\u001b[0;34m(path)\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mimage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcv2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mimread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpath\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mheight\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mwidth\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mimage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 9\u001b[0m \u001b[0mresized_image\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcv2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mresize\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mimage\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mwidth\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m3\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mheight\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0minterpolation\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcv2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mINTER_CUBIC\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'shape'" ] } ] } ] }