diff --git a/YOLO_+_Attention_Module.ipynb b/YOLO_+_Attention_Module.ipynb
new file mode 100644
index 000000000000..65aaa2c11eb9
--- /dev/null
+++ b/YOLO_+_Attention_Module.ipynb
@@ -0,0 +1,6346 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "colab_type": "text",
+ "id": "view-in-github"
+ },
+ "source": [
+ "
"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "j9-s96CHWUNI",
+ "outputId": "c7136917-362e-41cd-ded6-253e5d8234f9"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Cloning into 'SMN-YOLOv5s'...\n",
+ "remote: Enumerating objects: 203, done.\u001b[K\n",
+ "remote: Counting objects: 100% (6/6), done.\u001b[K\n",
+ "remote: Compressing objects: 100% (6/6), done.\u001b[K\n",
+ "remote: Total 203 (delta 1), reused 1 (delta 0), pack-reused 197 (from 1)\u001b[K\n",
+ "Receiving objects: 100% (203/203), 55.39 MiB | 14.96 MiB/s, done.\n",
+ "Resolving deltas: 100% (81/81), done.\n"
+ ]
+ }
+ ],
+ "source": [
+ "!git clone https://github.com/RethinkingCoding/SMN-YOLOv5s"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "tNzaduaVWaFB",
+ "outputId": "5a19f683-628b-43fd-ff83-015e5691c16a"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/content/SMN-YOLOv5s\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.2/1.2 MB\u001b[0m \u001b[31m33.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25h"
+ ]
+ }
+ ],
+ "source": [
+ "%cd SMN-YOLOv5s\n",
+ "%pip install -qr requirements.txt"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "gHtgfucyWcsl",
+ "outputId": "935e693e-d776-44bd-8d4e-59b4c046c501"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/content/SMN-YOLOv5s\n"
+ ]
+ }
+ ],
+ "source": [
+ "import os\n",
+ "\n",
+ "print(os.getcwd())"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "id": "GtN-pCX0Wg-I"
+ },
+ "outputs": [],
+ "source": [
+ "import random\n",
+ "\n",
+ "import numpy as np\n",
+ "import torch\n",
+ "\n",
+ "\n",
+ "def set_seed(seed=42):\n",
+ " random.seed(seed)\n",
+ " np.random.seed(seed)\n",
+ " torch.manual_seed(seed)\n",
+ " torch.cuda.manual_seed(seed)\n",
+ " torch.backends.cudnn.deterministic = True\n",
+ " torch.backends.cudnn.benchmark = False\n",
+ "\n",
+ "\n",
+ "set_seed(42)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "KtscwnpbWjD2",
+ "outputId": "a2625566-55cc-44b7-9ef0-90a6b7e57fc4"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Collecting roboflow\n",
+ " Downloading roboflow-1.2.13-py3-none-any.whl.metadata (9.7 kB)\n",
+ "Requirement already satisfied: certifi in /usr/local/lib/python3.12/dist-packages (from roboflow) (2026.1.4)\n",
+ "Collecting idna==3.7 (from roboflow)\n",
+ " Downloading idna-3.7-py3-none-any.whl.metadata (9.9 kB)\n",
+ "Requirement already satisfied: cycler in /usr/local/lib/python3.12/dist-packages (from roboflow) (0.12.1)\n",
+ "Requirement already satisfied: kiwisolver>=1.3.1 in /usr/local/lib/python3.12/dist-packages (from roboflow) (1.4.9)\n",
+ "Requirement already satisfied: matplotlib in /usr/local/lib/python3.12/dist-packages (from roboflow) (3.10.0)\n",
+ "Requirement already satisfied: numpy>=1.18.5 in /usr/local/lib/python3.12/dist-packages (from roboflow) (2.0.2)\n",
+ "Collecting opencv-python-headless==4.10.0.84 (from roboflow)\n",
+ " Downloading opencv_python_headless-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (20 kB)\n",
+ "Requirement already satisfied: Pillow>=7.1.2 in /usr/local/lib/python3.12/dist-packages (from roboflow) (11.3.0)\n",
+ "Collecting pillow-avif-plugin<2 (from roboflow)\n",
+ " Downloading pillow_avif_plugin-1.5.5-cp312-cp312-manylinux_2_28_x86_64.whl.metadata (2.2 kB)\n",
+ "Requirement already satisfied: python-dateutil in /usr/local/lib/python3.12/dist-packages (from roboflow) (2.9.0.post0)\n",
+ "Requirement already satisfied: python-dotenv in /usr/local/lib/python3.12/dist-packages (from roboflow) (1.2.1)\n",
+ "Requirement already satisfied: requests in /usr/local/lib/python3.12/dist-packages (from roboflow) (2.32.4)\n",
+ "Requirement already satisfied: six in /usr/local/lib/python3.12/dist-packages (from roboflow) (1.17.0)\n",
+ "Requirement already satisfied: urllib3>=1.26.6 in /usr/local/lib/python3.12/dist-packages (from roboflow) (2.5.0)\n",
+ "Requirement already satisfied: tqdm>=4.41.0 in /usr/local/lib/python3.12/dist-packages (from roboflow) (4.67.3)\n",
+ "Requirement already satisfied: PyYAML>=5.3.1 in /usr/local/lib/python3.12/dist-packages (from roboflow) (6.0.3)\n",
+ "Requirement already satisfied: requests-toolbelt in /usr/local/lib/python3.12/dist-packages (from roboflow) (1.0.0)\n",
+ "Collecting filetype (from roboflow)\n",
+ " Downloading filetype-1.2.0-py2.py3-none-any.whl.metadata (6.5 kB)\n",
+ "Collecting pi-heif<2 (from roboflow)\n",
+ " Downloading pi_heif-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (6.5 kB)\n",
+ "Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.12/dist-packages (from matplotlib->roboflow) (1.3.3)\n",
+ "Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.12/dist-packages (from matplotlib->roboflow) (4.61.1)\n",
+ "Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.12/dist-packages (from matplotlib->roboflow) (26.0)\n",
+ "Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.12/dist-packages (from matplotlib->roboflow) (3.3.2)\n",
+ "Requirement already satisfied: charset_normalizer<4,>=2 in /usr/local/lib/python3.12/dist-packages (from requests->roboflow) (3.4.4)\n",
+ "Downloading roboflow-1.2.13-py3-none-any.whl (91 kB)\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m91.8/91.8 kB\u001b[0m \u001b[31m7.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hDownloading idna-3.7-py3-none-any.whl (66 kB)\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m66.8/66.8 kB\u001b[0m \u001b[31m8.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hDownloading opencv_python_headless-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.9 MB)\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m49.9/49.9 MB\u001b[0m \u001b[31m20.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hDownloading pi_heif-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.5 MB)\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m1.5/1.5 MB\u001b[0m \u001b[31m95.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hDownloading pillow_avif_plugin-1.5.5-cp312-cp312-manylinux_2_28_x86_64.whl (5.5 MB)\n",
+ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.5/5.5 MB\u001b[0m \u001b[31m144.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25hDownloading filetype-1.2.0-py2.py3-none-any.whl (19 kB)\n",
+ "Installing collected packages: pillow-avif-plugin, filetype, pi-heif, opencv-python-headless, idna, roboflow\n",
+ " Attempting uninstall: opencv-python-headless\n",
+ " Found existing installation: opencv-python-headless 4.13.0.92\n",
+ " Uninstalling opencv-python-headless-4.13.0.92:\n",
+ " Successfully uninstalled opencv-python-headless-4.13.0.92\n",
+ " Attempting uninstall: idna\n",
+ " Found existing installation: idna 3.11\n",
+ " Uninstalling idna-3.11:\n",
+ " Successfully uninstalled idna-3.11\n",
+ "Successfully installed filetype-1.2.0 idna-3.7 opencv-python-headless-4.10.0.84 pi-heif-1.2.0 pillow-avif-plugin-1.5.5 roboflow-1.2.13\n",
+ "loading Roboflow workspace...\n",
+ "loading Roboflow project...\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "Downloading Dataset Version Zip in potato-counting-1 to yolov5pytorch:: 100%|██████████| 771070/771070 [00:11<00:00, 67939.53it/s]"
+ ]
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ },
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Extracting Dataset Version Zip to potato-counting-1 in yolov5pytorch:: 100%|██████████| 4838/4838 [00:04<00:00, 1090.83it/s]\n"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install roboflow\n",
+ "\n",
+ "from roboflow import Roboflow\n",
+ "\n",
+ "rf = Roboflow(api_key=\"SYLND05UAeOcirwZfGFJ\")\n",
+ "project = rf.workspace(\"potato-lxebf\").project(\"potato-counting\")\n",
+ "version = project.version(1)\n",
+ "dataset = version.download(\"yolov5\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {
+ "id": "5e5MvNDtemul"
+ },
+ "outputs": [],
+ "source": [
+ "!WANDB_MODE=disabled WANDB_DISABLED=true"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "alZzV4VCWpK0",
+ "outputId": "58d96016-346a-4032-a7a7-cc43d10d4d30"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[?25l \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m0.0/125.7 kB\u001b[0m \u001b[31m?\u001b[0m eta \u001b[36m-:--:--\u001b[0m\r\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m125.7/125.7 kB\u001b[0m \u001b[31m8.0 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
+ "\u001b[?25h"
+ ]
+ }
+ ],
+ "source": [
+ "!pip -q uninstall -y albumentations\n",
+ "!pip -q install \"albumentations==1.3.1\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "FdnNtHxMfJVJ",
+ "outputId": "2174011c-99f0-49a8-c0dc-a24705dc664b"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Patched 4 file(s).\n",
+ " - /content/SMN-YOLOv5s/train.py\n",
+ " - /content/SMN-YOLOv5s/utils/general.py\n",
+ " - /content/SMN-YOLOv5s/segment/train.py\n",
+ " - /content/SMN-YOLOv5s/classify/train.py\n"
+ ]
+ }
+ ],
+ "source": [
+ "# =========================\n",
+ "# PATCH — disable deterministic algorithms that crash with AdaptiveMaxPool2d (CBAM)\n",
+ "# =========================\n",
+ "import re\n",
+ "from pathlib import Path\n",
+ "\n",
+ "ROOT = Path(\"/content/SMN-YOLOv5s\") # adjust if your repo path differs\n",
+ "\n",
+ "py_files = list(ROOT.rglob(\"*.py\"))\n",
+ "patched = []\n",
+ "\n",
+ "for p in py_files:\n",
+ " txt = p.read_text(errors=\"ignore\")\n",
+ "\n",
+ " new = txt\n",
+ "\n",
+ " # 1) Disable strict deterministic algorithms\n",
+ " new = re.sub(r\"torch\\.use_deterministic_algorithms\\(\\s*True\\s*\\)\", \"torch.use_deterministic_algorithms(False)\", new)\n",
+ "\n",
+ " # 2) If init_seeds(..., deterministic=True) exists, flip it\n",
+ " new = re.sub(r\"(init_seeds\\([^)]*?)deterministic\\s*=\\s*True\", r\"\\1deterministic=False\", new)\n",
+ "\n",
+ " if new != txt:\n",
+ " p.write_text(new)\n",
+ " patched.append(str(p))\n",
+ "\n",
+ "print(f\"Patched {len(patched)} file(s).\")\n",
+ "for f in patched[:20]:\n",
+ " print(\" -\", f)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "mA245GCjWm5P",
+ "outputId": "c078998b-32ac-4899-d89a-46ed141311cf"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[34m\u001b[1mwandb\u001b[0m: WARNING ⚠️ wandb is deprecated and will be removed in a future release. See supported integrations at https://github.com/ultralytics/yolov5#integrations.\n",
+ "2026-02-15 09:10:02.901536: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n",
+ "WARNING: All log messages before absl::InitializeLog() is called are written to STDERR\n",
+ "E0000 00:00:1771146602.922334 8916 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\n",
+ "E0000 00:00:1771146602.929322 8916 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\n",
+ "W0000 00:00:1771146602.948074 8916 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771146602.948102 8916 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771146602.948106 8916 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771146602.948112 8916 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (1) Create a W&B account\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (2) Use an existing W&B account\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (3) Don't visualize my results\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: Enter your choice: (30 second timeout) \n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: \u001b[33mWARNING\u001b[0m W&B disabled due to login timeout.\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: W&B API key is configured. Use \u001b[1m`wandb login --relogin`\u001b[0m to force relogin\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mweights=, cfg=/content/SMN-YOLOv5s/models/yolov5s-cbam.yaml, data=/content/SMN-YOLOv5s/potato-counting-1/data.yaml, hyp=data/hyps/hyp.scratch-low.yaml, epochs=10, batch_size=16, imgsz=640, rect=False, resume=False, nosave=False, noval=False, noautoanchor=False, noplots=False, evolve=None, bucket=, cache=ram, image_weights=False, device=0, multi_scale=False, single_cls=False, optimizer=SGD, sync_bn=False, workers=8, project=runs/train, name=exp, exist_ok=False, quad=False, cos_lr=False, label_smoothing=0.0, patience=100, freeze=[0], save_period=-1, seed=0, local_rank=-1, entity=None, upload_dataset=False, bbox_interval=-1, artifact_alias=latest\n",
+ "\u001b[34m\u001b[1mgithub: \u001b[0m⚠️ YOLOv5 is out of date by 2944 commits. Use 'git pull ultralytics master' or 'git clone https://github.com/ultralytics/yolov5' to update.\n",
+ "YOLOv5 🚀 704b81b1 Python-3.12.12 torch-2.9.0+cu128 CUDA:0 (Tesla T4, 14913MiB)\n",
+ "\n",
+ "\u001b[34m\u001b[1mhyperparameters: \u001b[0mlr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=0.05, cls=0.5, cls_pw=1.0, obj=1.0, obj_pw=1.0, iou_t=0.2, anchor_t=4.0, fl_gamma=0.0, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, mosaic=1.0, mixup=0.0, copy_paste=0.0\n",
+ "\u001b[34m\u001b[1mComet: \u001b[0mrun 'pip install comet_ml' to automatically track and visualize YOLOv5 🚀 runs in Comet\n",
+ "\u001b[34m\u001b[1mTensorBoard: \u001b[0mStart with 'tensorboard --logdir runs/train', view at http://localhost:6006/\n",
+ "\n",
+ " from n params module arguments \n",
+ " 0 -1 1 3616 models.common.Conv [3, 32, 6, 2, 2] \n",
+ " 1 -1 1 18752 models.common.Conv [32, 64, 3, 2] \n",
+ " 2 -1 1 19392 models.common.C3 [64, 64, 1] \n",
+ " 3 -1 1 74368 models.common.Conv [64, 128, 3, 2] \n",
+ " 4 -1 2 117248 models.common.C3 [128, 128, 2] \n",
+ " 5 -1 1 296192 models.common.Conv [128, 256, 3, 2] \n",
+ " 6 -1 3 628992 models.common.C3 [256, 256, 3] \n",
+ " 7 -1 1 1182208 models.common.Conv [256, 512, 3, 2] \n",
+ " 8 -1 1 1187328 models.common.C3 [512, 512, 1] \n",
+ " 9 -1 1 32866 models.common.CBAM [512, 512] \n",
+ " 10 -1 1 659200 models.common.SPPF [512, 512, 5] \n",
+ " 11 -1 1 132352 models.common.Conv [512, 256, 1, 1] \n",
+ " 12 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] \n",
+ " 13 [-1, 6] 1 0 models.common.Concat [1] \n",
+ " 14 -1 1 364288 models.common.C3 [512, 256, 1, False] \n",
+ " 15 -1 1 33408 models.common.Conv [256, 128, 1, 1] \n",
+ " 16 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] \n",
+ " 17 [-1, 4] 1 0 models.common.Concat [1] \n",
+ " 18 -1 1 92032 models.common.C3 [256, 128, 1, False] \n",
+ " 19 -1 1 148096 models.common.Conv [128, 128, 3, 2] \n",
+ " 20 [-1, 15] 1 0 models.common.Concat [1] \n",
+ " 21 -1 1 298752 models.common.C3 [256, 256, 1, False] \n",
+ " 22 -1 1 591104 models.common.Conv [256, 256, 3, 2] \n",
+ " 23 [-1, 11] 1 0 models.common.Concat [1] \n",
+ " 24 -1 1 1187328 models.common.C3 [512, 512, 1, False] \n",
+ " 25 [18, 21, 24] 1 16182 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [128, 256, 512]]\n",
+ "YOLOv5s-cbam summary: 281 layers, 7083704 parameters, 7083704 gradients, 16.0 GFLOPs\n",
+ "\n",
+ "/content/SMN-YOLOv5s/models/common.py:719: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with amp.autocast(autocast):\n",
+ "/content/SMN-YOLOv5s/models/common.py:719: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with amp.autocast(autocast):\n",
+ "\u001b[34m\u001b[1mAMP: \u001b[0mchecks passed ✅\n",
+ "\u001b[34m\u001b[1moptimizer:\u001b[0m SGD(lr=0.01) with parameter groups 57 weight(decay=0.0), 234 weight(decay=0.0005), 60 bias\n",
+ "\u001b[34m\u001b[1malbumentations: \u001b[0mBlur(p=0.01, blur_limit=(3, 7)), MedianBlur(p=0.01, blur_limit=(3, 7)), ToGray(p=0.01), CLAHE(p=0.01, clip_limit=(1, 4.0), tile_grid_size=(8, 8))\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mScanning /content/SMN-YOLOv5s/potato-counting-1/train/labels.cache... 2077 images, 78 backgrounds, 0 corrupt: 100% 2077/2077 [00:00, ?it/s]\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mCaching images (1.3GB ram): 100% 2077/2077 [00:23<00:00, 88.44it/s]\n",
+ "\u001b[34m\u001b[1mval: \u001b[0mScanning /content/SMN-YOLOv5s/potato-counting-1/valid/labels.cache... 168 images, 0 backgrounds, 0 corrupt: 100% 168/168 [00:00, ?it/s]\n",
+ "\u001b[34m\u001b[1mval: \u001b[0mCaching images (0.1GB ram): 100% 168/168 [00:02<00:00, 58.00it/s]\n",
+ "\n",
+ "\u001b[34m\u001b[1mAutoAnchor: \u001b[0m5.00 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅\n",
+ "Plotting labels to runs/train/exp8/labels.jpg... \n",
+ "/content/SMN-YOLOv5s/train.py:261: FutureWarning: `torch.cuda.amp.GradScaler(args...)` is deprecated. Please use `torch.amp.GradScaler('cuda', args...)` instead.\n",
+ " scaler = torch.cuda.amp.GradScaler(enabled=amp)\n",
+ "Image sizes 640 train, 640 val\n",
+ "Using 2 dataloader workers\n",
+ "Logging results to \u001b[1mruns/train/exp8\u001b[0m\n",
+ "Starting training for 10 epochs...\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 6.61G 0.2097 0.2653 0 561 640: 1% 1/130 [00:03<06:49, 3.17s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 6.72G 0.2086 0.2406 0 410 640: 2% 2/130 [00:03<03:31, 1.65s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 6.93G 0.2074 0.2223 0 365 640: 2% 3/130 [00:04<02:37, 1.24s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2061 0.2252 0 441 640: 3% 4/130 [00:05<02:20, 1.11s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2058 0.2237 0 411 640: 4% 5/130 [00:06<01:56, 1.07it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2057 0.2302 0 485 640: 5% 6/130 [00:06<01:45, 1.18it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2058 0.2286 0 396 640: 5% 7/130 [00:07<01:31, 1.34it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2053 0.2308 0 429 640: 6% 8/130 [00:07<01:22, 1.49it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2047 0.2289 0 426 640: 7% 9/130 [00:08<01:15, 1.61it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2044 0.2279 0 366 640: 8% 10/130 [00:08<01:10, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2039 0.23 0 430 640: 8% 11/130 [00:09<01:07, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2041 0.2314 0 578 640: 9% 12/130 [00:09<01:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2043 0.2349 0 612 640: 10% 13/130 [00:10<01:03, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2041 0.2352 0 463 640: 11% 14/130 [00:10<01:01, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2042 0.2353 0 448 640: 12% 15/130 [00:11<01:00, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2039 0.2342 0 346 640: 12% 16/130 [00:11<01:00, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2036 0.2352 0 473 640: 13% 17/130 [00:12<00:59, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2037 0.2386 0 584 640: 14% 18/130 [00:12<01:00, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2033 0.2401 0 490 640: 15% 19/130 [00:13<00:58, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2029 0.2389 0 368 640: 15% 20/130 [00:14<00:58, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2031 0.2377 0 429 640: 16% 21/130 [00:14<00:57, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2029 0.2364 0 361 640: 17% 22/130 [00:15<00:57, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.203 0.2361 0 448 640: 18% 23/130 [00:15<00:56, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2031 0.2351 0 495 640: 18% 24/130 [00:16<00:55, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2029 0.2333 0 354 640: 19% 25/130 [00:16<00:54, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2029 0.2322 0 390 640: 20% 26/130 [00:17<00:54, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2028 0.2326 0 542 640: 21% 27/130 [00:17<00:56, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2029 0.232 0 436 640: 22% 28/130 [00:18<00:56, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2027 0.2345 0 586 640: 22% 29/130 [00:18<00:57, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2025 0.2343 0 514 640: 23% 30/130 [00:19<00:56, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2023 0.2335 0 360 640: 24% 31/130 [00:20<00:55, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2023 0.2344 0 599 640: 25% 32/130 [00:20<00:55, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.202 0.2359 0 549 640: 25% 33/130 [00:21<00:53, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2019 0.237 0 514 640: 26% 34/130 [00:21<00:51, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2016 0.2369 0 437 640: 27% 35/130 [00:22<00:50, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2015 0.2376 0 562 640: 28% 36/130 [00:22<00:49, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2013 0.2379 0 464 640: 28% 37/130 [00:23<00:48, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2011 0.2367 0 351 640: 29% 38/130 [00:23<00:48, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2009 0.2369 0 473 640: 30% 39/130 [00:24<00:47, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2008 0.2371 0 445 640: 31% 40/130 [00:24<00:47, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2007 0.2364 0 425 640: 32% 41/130 [00:25<00:46, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2006 0.2359 0 484 640: 32% 42/130 [00:25<00:46, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2004 0.2362 0 406 640: 33% 43/130 [00:26<00:45, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2003 0.2351 0 376 640: 34% 44/130 [00:26<00:45, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2002 0.2339 0 356 640: 35% 45/130 [00:27<00:44, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1999 0.2344 0 485 640: 35% 46/130 [00:27<00:44, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1997 0.2348 0 468 640: 36% 47/130 [00:28<00:43, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.2 0.2343 0 535 640: 37% 48/130 [00:29<00:43, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1998 0.2343 0 470 640: 38% 49/130 [00:29<00:42, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1996 0.2342 0 438 640: 38% 50/130 [00:30<00:41, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1994 0.2348 0 438 640: 39% 51/130 [00:30<00:41, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1993 0.2338 0 394 640: 40% 52/130 [00:31<00:42, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.199 0.2342 0 428 640: 41% 53/130 [00:31<00:43, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1991 0.2333 0 382 640: 42% 54/130 [00:32<00:43, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1988 0.2331 0 469 640: 42% 55/130 [00:32<00:42, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1987 0.233 0 505 640: 43% 56/130 [00:33<00:41, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1986 0.2341 0 553 640: 44% 57/130 [00:33<00:39, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1985 0.2342 0 484 640: 45% 58/130 [00:34<00:38, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1983 0.2341 0 477 640: 45% 59/130 [00:35<00:37, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1982 0.2343 0 484 640: 46% 60/130 [00:35<00:37, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1981 0.2344 0 561 640: 47% 61/130 [00:36<00:36, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1979 0.2343 0 441 640: 48% 62/130 [00:36<00:35, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1979 0.2338 0 410 640: 48% 63/130 [00:37<00:34, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1978 0.2335 0 432 640: 49% 64/130 [00:37<00:34, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1978 0.2332 0 486 640: 50% 65/130 [00:38<00:33, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1977 0.2329 0 411 640: 51% 66/130 [00:38<00:32, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1976 0.2328 0 498 640: 52% 67/130 [00:39<00:32, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1974 0.2326 0 438 640: 52% 68/130 [00:39<00:32, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1973 0.2331 0 534 640: 53% 69/130 [00:40<00:31, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1972 0.2332 0 563 640: 54% 70/130 [00:40<00:30, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1971 0.2327 0 495 640: 55% 71/130 [00:41<00:30, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1969 0.2322 0 388 640: 55% 72/130 [00:41<00:29, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1968 0.2313 0 364 640: 56% 73/130 [00:42<00:29, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1967 0.2307 0 387 640: 57% 74/130 [00:42<00:28, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1965 0.2312 0 555 640: 58% 75/130 [00:43<00:28, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1964 0.2308 0 336 640: 58% 76/130 [00:43<00:27, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1963 0.2305 0 465 640: 59% 77/130 [00:44<00:27, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1962 0.2301 0 388 640: 60% 78/130 [00:44<00:27, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1961 0.2297 0 442 640: 61% 79/130 [00:45<00:28, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1961 0.2299 0 606 640: 62% 80/130 [00:45<00:27, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1962 0.2294 0 430 640: 62% 81/130 [00:46<00:27, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1961 0.2295 0 575 640: 63% 82/130 [00:47<00:25, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1961 0.2294 0 465 640: 64% 83/130 [00:47<00:25, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.196 0.229 0 389 640: 65% 84/130 [00:48<00:23, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1959 0.2289 0 450 640: 65% 85/130 [00:48<00:23, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1958 0.2289 0 511 640: 66% 86/130 [00:49<00:22, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1958 0.2293 0 570 640: 67% 87/130 [00:49<00:22, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1957 0.2289 0 433 640: 68% 88/130 [00:50<00:21, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1957 0.2288 0 477 640: 68% 89/130 [00:50<00:21, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1956 0.2289 0 510 640: 69% 90/130 [00:51<00:20, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1955 0.2292 0 491 640: 70% 91/130 [00:51<00:19, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1954 0.2295 0 498 640: 71% 92/130 [00:52<00:19, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1953 0.229 0 445 640: 72% 93/130 [00:52<00:18, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1952 0.2291 0 526 640: 72% 94/130 [00:53<00:18, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1952 0.2283 0 331 640: 73% 95/130 [00:53<00:17, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1952 0.228 0 444 640: 74% 96/130 [00:54<00:17, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1952 0.2276 0 408 640: 75% 97/130 [00:54<00:16, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1952 0.2273 0 464 640: 75% 98/130 [00:55<00:16, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1951 0.2273 0 601 640: 76% 99/130 [00:55<00:15, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1951 0.2268 0 327 640: 77% 100/130 [00:56<00:15, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.195 0.2266 0 413 640: 78% 101/130 [00:56<00:14, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1949 0.2261 0 376 640: 78% 102/130 [00:57<00:14, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1949 0.2262 0 550 640: 79% 103/130 [00:57<00:14, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1948 0.2262 0 540 640: 80% 104/130 [00:58<00:13, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1948 0.226 0 466 640: 81% 105/130 [00:58<00:13, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1948 0.2257 0 439 640: 82% 106/130 [00:59<00:12, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1947 0.2252 0 375 640: 82% 107/130 [00:59<00:12, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1947 0.2249 0 425 640: 83% 108/130 [01:00<00:11, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1946 0.2248 0 425 640: 84% 109/130 [01:00<00:11, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1946 0.2246 0 574 640: 85% 110/130 [01:01<00:10, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1946 0.2245 0 398 640: 85% 111/130 [01:01<00:09, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1945 0.2243 0 425 640: 86% 112/130 [01:02<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1944 0.224 0 407 640: 87% 113/130 [01:02<00:08, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.224 0 466 640: 88% 114/130 [01:03<00:08, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1944 0.2238 0 498 640: 88% 115/130 [01:04<00:07, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.2237 0 527 640: 89% 116/130 [01:04<00:07, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.2232 0 425 640: 90% 117/130 [01:05<00:06, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.223 0 443 640: 91% 118/130 [01:05<00:06, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1944 0.2224 0 388 640: 92% 119/130 [01:06<00:05, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.2221 0 462 640: 92% 120/130 [01:06<00:05, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1943 0.2219 0 426 640: 93% 121/130 [01:07<00:04, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1942 0.2215 0 419 640: 94% 122/130 [01:07<00:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1942 0.2212 0 491 640: 95% 123/130 [01:08<00:03, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1941 0.221 0 407 640: 95% 124/130 [01:08<00:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.194 0.2205 0 326 640: 96% 125/130 [01:09<00:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.194 0.2203 0 409 640: 97% 126/130 [01:09<00:02, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1939 0.2201 0 418 640: 98% 127/130 [01:10<00:01, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1939 0.22 0 486 640: 98% 128/130 [01:10<00:01, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1938 0.2198 0 508 640: 99% 129/130 [01:11<00:00, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.14G 0.1937 0.22 0 425 640: 100% 130/130 [01:12<00:00, 1.80it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:04<00:00, 1.42it/s]\n",
+ " all 168 2530 0.0123 0.183 0.00803 0.00189\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1906 0.1946 0 513 640: 1% 1/130 [00:00<01:07, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1909 0.1947 0 446 640: 2% 2/130 [00:01<01:05, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1931 0.1972 0 542 640: 2% 3/130 [00:01<01:05, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1892 0.1947 0 304 640: 3% 4/130 [00:02<01:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1884 0.1985 0 466 640: 4% 5/130 [00:02<01:04, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1875 0.1967 0 435 640: 5% 6/130 [00:03<01:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1871 0.195 0 440 640: 5% 7/130 [00:03<01:03, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1868 0.1961 0 460 640: 6% 8/130 [00:04<01:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1857 0.1968 0 361 640: 7% 9/130 [00:04<01:02, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1974 0 447 640: 8% 10/130 [00:05<01:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1988 0 536 640: 8% 11/130 [00:05<01:03, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1972 0 409 640: 9% 12/130 [00:06<01:03, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1979 0 530 640: 10% 13/130 [00:06<01:05, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1973 0 489 640: 11% 14/130 [00:07<01:03, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1855 0.196 0 464 640: 12% 15/130 [00:07<01:05, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1856 0.1931 0 385 640: 12% 16/130 [00:08<01:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1855 0.1942 0 491 640: 13% 17/130 [00:09<01:01, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1854 0.1942 0 450 640: 14% 18/130 [00:09<00:59, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.193 0 367 640: 15% 19/130 [00:10<00:58, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1927 0 501 640: 15% 20/130 [00:10<00:57, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1854 0.1941 0 574 640: 16% 21/130 [00:11<00:57, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1943 0 479 640: 17% 22/130 [00:11<00:55, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.1929 0 304 640: 18% 23/130 [00:12<00:55, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.185 0.1918 0 369 640: 18% 24/130 [00:12<00:54, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.1899 0 384 640: 19% 25/130 [00:13<00:54, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1877 0 289 640: 20% 26/130 [00:13<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1853 0.1861 0 322 640: 21% 27/130 [00:14<00:53, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1862 0 459 640: 22% 28/130 [00:14<00:52, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1853 0 365 640: 22% 29/130 [00:15<00:52, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.185 0 430 640: 23% 30/130 [00:15<00:51, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.1845 0 488 640: 24% 31/130 [00:16<00:51, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1835 0 447 640: 25% 32/130 [00:16<00:50, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1839 0 493 640: 25% 33/130 [00:17<00:50, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1836 0 435 640: 26% 34/130 [00:17<00:49, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1852 0.1836 0 466 640: 27% 35/130 [00:18<00:49, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1851 0.1835 0 434 640: 28% 36/130 [00:18<00:49, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.185 0.1828 0 367 640: 28% 37/130 [00:19<00:51, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.185 0.1821 0 465 640: 29% 38/130 [00:20<00:50, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1849 0.1823 0 551 640: 30% 39/130 [00:20<00:50, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1849 0.1821 0 466 640: 31% 40/130 [00:21<00:48, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1848 0.1817 0 460 640: 32% 41/130 [00:21<00:48, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1847 0.1821 0 591 640: 32% 42/130 [00:22<00:46, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1845 0.1823 0 486 640: 33% 43/130 [00:22<00:46, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1847 0.1825 0 514 640: 34% 44/130 [00:23<00:45, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1845 0.1826 0 437 640: 35% 45/130 [00:23<00:44, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1844 0.1825 0 493 640: 35% 46/130 [00:24<00:43, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1844 0.1823 0 576 640: 36% 47/130 [00:24<00:43, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1844 0.1818 0 408 640: 37% 48/130 [00:25<00:42, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1844 0.1816 0 470 640: 38% 49/130 [00:25<00:42, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1843 0.1815 0 676 640: 38% 50/130 [00:26<00:41, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1842 0.1816 0 539 640: 39% 51/130 [00:26<00:41, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1841 0.1814 0 562 640: 40% 52/130 [00:27<00:40, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.184 0.1811 0 504 640: 41% 53/130 [00:27<00:40, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.184 0.1805 0 489 640: 42% 54/130 [00:28<00:39, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.184 0.1802 0 564 640: 42% 55/130 [00:28<00:38, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1839 0.1792 0 300 640: 43% 56/130 [00:29<00:38, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1837 0.1786 0 403 640: 44% 57/130 [00:29<00:37, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1836 0.1776 0 302 640: 45% 58/130 [00:30<00:37, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1834 0.1773 0 437 640: 45% 59/130 [00:30<00:36, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1832 0.1773 0 471 640: 46% 60/130 [00:31<00:35, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.183 0.1767 0 335 640: 47% 61/130 [00:32<00:36, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1829 0.176 0 414 640: 48% 62/130 [00:32<00:36, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1827 0.1759 0 586 640: 48% 63/130 [00:33<00:37, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1825 0.1754 0 481 640: 49% 64/130 [00:33<00:36, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1823 0.1749 0 378 640: 50% 65/130 [00:34<00:36, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1821 0.1745 0 467 640: 51% 66/130 [00:34<00:35, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.182 0.1741 0 491 640: 52% 67/130 [00:35<00:33, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1818 0.1736 0 439 640: 52% 68/130 [00:35<00:33, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1816 0.173 0 432 640: 53% 69/130 [00:36<00:32, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1814 0.1729 0 515 640: 54% 70/130 [00:36<00:31, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1811 0.1722 0 291 640: 55% 71/130 [00:37<00:30, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1809 0.1718 0 408 640: 55% 72/130 [00:37<00:29, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1807 0.1717 0 458 640: 56% 73/130 [00:38<00:29, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1806 0.1717 0 520 640: 57% 74/130 [00:38<00:28, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1803 0.1713 0 414 640: 58% 75/130 [00:39<00:28, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1801 0.1708 0 319 640: 58% 76/130 [00:39<00:27, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.18 0.1702 0 372 640: 59% 77/130 [00:40<00:27, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1798 0.1697 0 367 640: 60% 78/130 [00:41<00:26, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1797 0.1695 0 578 640: 61% 79/130 [00:41<00:26, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1796 0.1692 0 436 640: 62% 80/130 [00:42<00:25, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1793 0.1691 0 566 640: 62% 81/130 [00:42<00:25, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1791 0.1687 0 412 640: 63% 82/130 [00:43<00:24, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1789 0.1684 0 469 640: 64% 83/130 [00:43<00:24, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1787 0.1678 0 367 640: 65% 84/130 [00:44<00:23, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1785 0.1677 0 517 640: 65% 85/130 [00:44<00:22, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1784 0.1674 0 506 640: 66% 86/130 [00:45<00:23, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1781 0.1674 0 483 640: 67% 87/130 [00:45<00:22, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1779 0.167 0 514 640: 68% 88/130 [00:46<00:22, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1777 0.1667 0 470 640: 68% 89/130 [00:46<00:21, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1775 0.1664 0 509 640: 69% 90/130 [00:47<00:21, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1772 0.166 0 470 640: 70% 91/130 [00:47<00:20, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.177 0.1655 0 411 640: 71% 92/130 [00:48<00:19, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1769 0.1651 0 379 640: 72% 93/130 [00:48<00:19, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1767 0.1647 0 427 640: 72% 94/130 [00:49<00:18, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1766 0.1644 0 409 640: 73% 95/130 [00:49<00:18, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1764 0.1643 0 631 640: 74% 96/130 [00:50<00:17, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1762 0.1639 0 429 640: 75% 97/130 [00:50<00:16, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.176 0.1637 0 461 640: 75% 98/130 [00:51<00:16, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1758 0.1635 0 557 640: 76% 99/130 [00:51<00:15, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1755 0.1635 0 511 640: 77% 100/130 [00:52<00:15, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1753 0.1634 0 537 640: 78% 101/130 [00:52<00:14, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1751 0.1631 0 497 640: 78% 102/130 [00:53<00:14, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1749 0.1629 0 503 640: 79% 103/130 [00:53<00:13, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1747 0.1626 0 432 640: 80% 104/130 [00:54<00:13, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1745 0.1622 0 385 640: 81% 105/130 [00:54<00:12, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1744 0.162 0 508 640: 82% 106/130 [00:55<00:12, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1742 0.1617 0 438 640: 82% 107/130 [00:55<00:11, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.174 0.1614 0 420 640: 83% 108/130 [00:56<00:11, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1738 0.1613 0 534 640: 84% 109/130 [00:56<00:10, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1736 0.161 0 445 640: 85% 110/130 [00:57<00:10, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1734 0.1608 0 523 640: 85% 111/130 [00:57<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1732 0.1605 0 409 640: 86% 112/130 [00:58<00:09, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.173 0.1602 0 471 640: 87% 113/130 [00:59<00:09, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1728 0.1598 0 359 640: 88% 114/130 [00:59<00:08, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1727 0.1595 0 492 640: 88% 115/130 [01:00<00:07, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1725 0.1591 0 398 640: 89% 116/130 [01:00<00:07, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1723 0.1588 0 481 640: 90% 117/130 [01:01<00:06, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1721 0.1586 0 450 640: 91% 118/130 [01:01<00:06, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1719 0.1585 0 509 640: 92% 119/130 [01:02<00:05, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1718 0.1585 0 522 640: 92% 120/130 [01:02<00:05, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1716 0.1584 0 498 640: 93% 121/130 [01:03<00:04, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1714 0.1583 0 428 640: 94% 122/130 [01:03<00:04, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1712 0.1581 0 483 640: 95% 123/130 [01:04<00:03, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1711 0.1578 0 575 640: 95% 124/130 [01:04<00:03, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.171 0.1576 0 453 640: 96% 125/130 [01:05<00:02, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1708 0.1573 0 440 640: 97% 126/130 [01:05<00:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1705 0.1571 0 431 640: 98% 127/130 [01:06<00:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1703 0.1569 0 415 640: 98% 128/130 [01:06<00:01, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1702 0.1569 0 619 640: 99% 129/130 [01:07<00:00, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.14G 0.1701 0.1566 0 404 640: 100% 130/130 [01:07<00:00, 1.92it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:02<00:00, 2.11it/s]\n",
+ " all 168 2530 0.227 0.425 0.193 0.054\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1497 0.1277 0 489 640: 1% 1/130 [00:00<01:21, 1.58it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1437 0.1249 0 439 640: 2% 2/130 [00:01<01:15, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.1225 0 450 640: 2% 3/130 [00:01<01:09, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.1148 0 297 640: 3% 4/130 [00:02<01:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1429 0.116 0 519 640: 4% 5/130 [00:02<01:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1444 0.1195 0 532 640: 5% 6/130 [00:03<01:06, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1458 0.1171 0 402 640: 5% 7/130 [00:03<01:05, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1463 0.1184 0 429 640: 6% 8/130 [00:04<01:03, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1458 0.1182 0 412 640: 7% 9/130 [00:04<01:02, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1452 0.1185 0 399 640: 8% 10/130 [00:05<01:02, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1453 0.1176 0 447 640: 8% 11/130 [00:05<01:01, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.145 0.1179 0 420 640: 9% 12/130 [00:06<01:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1448 0.1192 0 523 640: 10% 13/130 [00:06<01:00, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1449 0.1194 0 525 640: 11% 14/130 [00:07<00:59, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1449 0.1195 0 497 640: 12% 15/130 [00:07<00:58, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1447 0.1192 0 446 640: 12% 16/130 [00:08<00:58, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1439 0.1182 0 280 640: 13% 17/130 [00:08<00:57, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1435 0.1176 0 387 640: 14% 18/130 [00:09<00:56, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1435 0.1172 0 430 640: 15% 19/130 [00:09<00:56, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1432 0.117 0 387 640: 15% 20/130 [00:10<00:55, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1428 0.1178 0 388 640: 16% 21/130 [00:10<00:55, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1426 0.1178 0 465 640: 17% 22/130 [00:11<00:55, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1425 0.1186 0 478 640: 18% 23/130 [00:11<00:54, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1422 0.1189 0 433 640: 18% 24/130 [00:12<00:53, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1421 0.1183 0 374 640: 19% 25/130 [00:13<00:54, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1421 0.1182 0 380 640: 20% 26/130 [00:13<00:54, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1423 0.1175 0 417 640: 21% 27/130 [00:14<00:54, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1424 0.1172 0 405 640: 22% 28/130 [00:14<00:56, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1424 0.1165 0 427 640: 22% 29/130 [00:15<00:55, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1423 0.1162 0 446 640: 23% 30/130 [00:15<00:54, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1421 0.116 0 477 640: 24% 31/130 [00:16<00:53, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1422 0.1163 0 444 640: 25% 32/130 [00:16<00:51, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1422 0.1158 0 337 640: 25% 33/130 [00:17<00:50, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1425 0.1157 0 456 640: 26% 34/130 [00:17<00:49, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1421 0.1159 0 438 640: 27% 35/130 [00:18<00:48, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1418 0.1153 0 289 640: 28% 36/130 [00:18<00:48, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1416 0.1158 0 481 640: 28% 37/130 [00:19<00:47, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1416 0.1155 0 393 640: 29% 38/130 [00:19<00:47, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1417 0.116 0 589 640: 30% 39/130 [00:20<00:46, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1419 0.1157 0 442 640: 31% 40/130 [00:20<00:46, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1417 0.1158 0 512 640: 32% 41/130 [00:21<00:45, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1414 0.1154 0 340 640: 32% 42/130 [00:21<00:44, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.1149 0 391 640: 33% 43/130 [00:22<00:44, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.1149 0 373 640: 34% 44/130 [00:22<00:43, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.115 0 543 640: 35% 45/130 [00:23<00:43, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1412 0.115 0 382 640: 35% 46/130 [00:23<00:43, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1412 0.1152 0 546 640: 36% 47/130 [00:24<00:42, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1411 0.1155 0 543 640: 37% 48/130 [00:24<00:41, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.141 0.116 0 584 640: 38% 49/130 [00:25<00:41, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1408 0.1158 0 386 640: 38% 50/130 [00:25<00:40, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1405 0.1158 0 438 640: 39% 51/130 [00:26<00:40, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1401 0.1155 0 405 640: 40% 52/130 [00:27<00:42, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1401 0.1156 0 464 640: 41% 53/130 [00:27<00:42, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1399 0.1156 0 390 640: 42% 54/130 [00:28<00:40, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1398 0.1156 0 436 640: 42% 55/130 [00:28<00:40, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1396 0.1155 0 417 640: 43% 56/130 [00:29<00:39, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1395 0.1159 0 563 640: 44% 57/130 [00:29<00:38, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1392 0.1159 0 451 640: 45% 58/130 [00:30<00:38, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1392 0.1159 0 452 640: 45% 59/130 [00:30<00:37, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1391 0.1158 0 476 640: 46% 60/130 [00:31<00:36, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1391 0.1153 0 307 640: 47% 61/130 [00:31<00:35, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1391 0.1157 0 575 640: 48% 62/130 [00:32<00:35, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.139 0.1157 0 543 640: 48% 63/130 [00:32<00:34, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1389 0.1156 0 393 640: 49% 64/130 [00:33<00:34, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1387 0.1157 0 457 640: 50% 65/130 [00:33<00:33, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1387 0.1159 0 551 640: 51% 66/130 [00:34<00:32, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1387 0.1159 0 459 640: 52% 67/130 [00:34<00:31, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1386 0.116 0 606 640: 52% 68/130 [00:35<00:31, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1386 0.116 0 494 640: 53% 69/130 [00:35<00:31, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1386 0.1159 0 510 640: 54% 70/130 [00:36<00:30, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1388 0.1157 0 486 640: 55% 71/130 [00:36<00:29, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1387 0.1156 0 402 640: 55% 72/130 [00:37<00:29, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1386 0.1155 0 451 640: 56% 73/130 [00:37<00:29, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1384 0.1159 0 482 640: 57% 74/130 [00:38<00:28, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1382 0.1158 0 354 640: 58% 75/130 [00:38<00:27, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1381 0.1158 0 450 640: 58% 76/130 [00:39<00:28, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.138 0.1158 0 451 640: 59% 77/130 [00:40<00:27, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1381 0.1156 0 482 640: 60% 78/130 [00:40<00:27, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1379 0.1156 0 435 640: 61% 79/130 [00:41<00:27, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1379 0.1156 0 459 640: 62% 80/130 [00:41<00:27, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1377 0.1157 0 468 640: 62% 81/130 [00:42<00:26, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1376 0.1158 0 533 640: 63% 82/130 [00:42<00:25, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1375 0.1158 0 444 640: 64% 83/130 [00:43<00:24, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1374 0.1157 0 455 640: 65% 84/130 [00:43<00:24, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1373 0.116 0 493 640: 65% 85/130 [00:44<00:23, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1372 0.116 0 466 640: 66% 86/130 [00:44<00:22, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1371 0.116 0 478 640: 67% 87/130 [00:45<00:21, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.137 0.1163 0 660 640: 68% 88/130 [00:45<00:21, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1369 0.116 0 320 640: 68% 89/130 [00:46<00:21, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1368 0.1159 0 416 640: 69% 90/130 [00:46<00:20, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1368 0.1157 0 399 640: 70% 91/130 [00:47<00:20, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1368 0.1157 0 467 640: 71% 92/130 [00:47<00:19, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1367 0.1155 0 321 640: 72% 93/130 [00:48<00:18, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1367 0.1154 0 503 640: 72% 94/130 [00:48<00:18, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1367 0.1155 0 484 640: 73% 95/130 [00:49<00:17, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1367 0.1152 0 343 640: 74% 96/130 [00:49<00:17, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1366 0.1154 0 555 640: 75% 97/130 [00:50<00:16, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1365 0.1152 0 369 640: 75% 98/130 [00:50<00:16, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1365 0.1152 0 535 640: 76% 99/130 [00:51<00:15, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1364 0.1149 0 385 640: 77% 100/130 [00:51<00:15, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1365 0.1148 0 501 640: 78% 101/130 [00:52<00:14, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1365 0.1147 0 484 640: 78% 102/130 [00:52<00:14, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1364 0.1145 0 380 640: 79% 103/130 [00:53<00:14, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1364 0.1144 0 359 640: 80% 104/130 [00:54<00:14, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1363 0.1141 0 337 640: 81% 105/130 [00:54<00:13, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1363 0.1141 0 474 640: 82% 106/130 [00:55<00:12, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1363 0.1143 0 556 640: 82% 107/130 [00:55<00:12, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1362 0.1141 0 373 640: 83% 108/130 [00:56<00:11, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1361 0.1141 0 541 640: 84% 109/130 [00:56<00:10, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.136 0.1141 0 460 640: 85% 110/130 [00:57<00:10, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1358 0.1141 0 427 640: 85% 111/130 [00:57<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1357 0.1142 0 570 640: 86% 112/130 [00:58<00:09, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1358 0.1141 0 501 640: 87% 113/130 [00:58<00:08, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1358 0.1139 0 361 640: 88% 114/130 [00:59<00:08, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1358 0.1137 0 378 640: 88% 115/130 [00:59<00:07, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1358 0.1136 0 381 640: 89% 116/130 [01:00<00:07, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1357 0.1137 0 502 640: 90% 117/130 [01:00<00:06, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1356 0.1135 0 390 640: 91% 118/130 [01:01<00:06, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1354 0.1134 0 344 640: 92% 119/130 [01:01<00:05, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1353 0.1135 0 454 640: 92% 120/130 [01:02<00:05, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1353 0.1134 0 483 640: 93% 121/130 [01:02<00:04, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1352 0.1135 0 430 640: 94% 122/130 [01:03<00:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.1135 0 517 640: 95% 123/130 [01:03<00:03, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.1135 0 559 640: 95% 124/130 [01:04<00:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.1133 0 323 640: 96% 125/130 [01:04<00:02, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.1131 0 435 640: 97% 126/130 [01:05<00:02, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.113 0 435 640: 98% 127/130 [01:05<00:01, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1352 0.113 0 488 640: 98% 128/130 [01:06<00:01, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.1351 0.1131 0 582 640: 99% 129/130 [01:07<00:00, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.14G 0.135 0.113 0 298 640: 100% 130/130 [01:07<00:00, 1.93it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:02<00:00, 2.73it/s]\n",
+ " all 168 2530 0.374 0.592 0.389 0.109\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.121 0.1305 0 534 640: 1% 1/130 [00:00<01:04, 2.02it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1246 0.1279 0 557 640: 2% 2/130 [00:01<01:06, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1236 0.1212 0 430 640: 2% 3/130 [00:01<01:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1252 0.1163 0 382 640: 3% 4/130 [00:02<01:05, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1253 0.1129 0 443 640: 4% 5/130 [00:02<01:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1258 0.1113 0 469 640: 5% 6/130 [00:03<01:03, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1255 0.1091 0 428 640: 5% 7/130 [00:03<01:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.126 0.1105 0 605 640: 6% 8/130 [00:04<01:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1249 0.1082 0 353 640: 7% 9/130 [00:04<01:01, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1251 0.106 0 416 640: 8% 10/130 [00:05<01:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.125 0.1048 0 410 640: 8% 11/130 [00:05<01:00, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1248 0.1035 0 395 640: 9% 12/130 [00:06<01:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1246 0.1041 0 502 640: 10% 13/130 [00:06<00:59, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1248 0.1043 0 513 640: 11% 14/130 [00:07<00:59, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1244 0.1035 0 296 640: 12% 15/130 [00:07<00:58, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1242 0.1034 0 438 640: 12% 16/130 [00:08<00:57, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1241 0.1032 0 470 640: 13% 17/130 [00:08<00:58, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.124 0.1025 0 402 640: 14% 18/130 [00:09<01:00, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1239 0.103 0 659 640: 15% 19/130 [00:09<00:59, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1237 0.103 0 525 640: 15% 20/130 [00:10<00:59, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1235 0.1026 0 377 640: 16% 21/130 [00:10<00:59, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1231 0.1031 0 518 640: 17% 22/130 [00:11<00:58, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1232 0.1034 0 436 640: 18% 23/130 [00:11<00:56, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1232 0.1034 0 425 640: 18% 24/130 [00:12<00:55, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1232 0.1033 0 532 640: 19% 25/130 [00:12<00:54, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1232 0.1031 0 435 640: 20% 26/130 [00:13<00:54, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.123 0.1036 0 506 640: 21% 27/130 [00:13<00:52, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1226 0.1046 0 531 640: 22% 28/130 [00:14<00:52, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1224 0.1043 0 487 640: 22% 29/130 [00:15<00:51, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1224 0.1056 0 570 640: 23% 30/130 [00:15<00:51, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1058 0 581 640: 24% 31/130 [00:16<00:51, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1062 0 609 640: 25% 32/130 [00:16<00:50, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1064 0 557 640: 25% 33/130 [00:17<00:49, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1217 0.1062 0 495 640: 26% 34/130 [00:17<00:49, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.122 0.1063 0 628 640: 27% 35/130 [00:18<00:48, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.106 0 514 640: 28% 36/130 [00:18<00:47, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1223 0.1062 0 567 640: 28% 37/130 [00:19<00:47, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1059 0 419 640: 29% 38/130 [00:19<00:47, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1056 0 473 640: 30% 39/130 [00:20<00:46, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1049 0 335 640: 31% 40/130 [00:20<00:45, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1049 0 368 640: 32% 41/130 [00:21<00:45, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1224 0.1049 0 432 640: 32% 42/130 [00:21<00:45, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1225 0.1047 0 488 640: 33% 43/130 [00:22<00:45, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1224 0.1048 0 451 640: 34% 44/130 [00:22<00:46, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1223 0.1049 0 545 640: 35% 45/130 [00:23<00:45, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1047 0 387 640: 35% 46/130 [00:23<00:46, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.105 0 560 640: 36% 47/130 [00:24<00:45, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1051 0 571 640: 37% 48/130 [00:24<00:43, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1046 0 369 640: 38% 49/130 [00:25<00:42, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1222 0.1045 0 464 640: 38% 50/130 [00:26<00:42, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.122 0.1042 0 412 640: 39% 51/130 [00:26<00:41, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1219 0.1039 0 397 640: 40% 52/130 [00:27<00:40, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1217 0.1036 0 382 640: 41% 53/130 [00:27<00:39, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1216 0.1032 0 395 640: 42% 54/130 [00:28<00:39, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1217 0.1028 0 328 640: 42% 55/130 [00:28<00:38, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1219 0.1025 0 357 640: 43% 56/130 [00:29<00:37, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.122 0.1025 0 542 640: 44% 57/130 [00:29<00:37, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1221 0.1022 0 369 640: 45% 58/130 [00:30<00:37, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1219 0.1019 0 375 640: 45% 59/130 [00:30<00:36, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1218 0.102 0 550 640: 46% 60/130 [00:31<00:35, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1217 0.1018 0 429 640: 47% 61/130 [00:31<00:34, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1215 0.1018 0 492 640: 48% 62/130 [00:32<00:34, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1214 0.1017 0 437 640: 48% 63/130 [00:32<00:34, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1212 0.1014 0 353 640: 49% 64/130 [00:33<00:33, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1211 0.1012 0 322 640: 50% 65/130 [00:33<00:32, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.121 0.101 0 471 640: 51% 66/130 [00:34<00:32, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.121 0.1007 0 346 640: 52% 67/130 [00:34<00:32, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.121 0.1009 0 571 640: 52% 68/130 [00:35<00:31, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1211 0.1011 0 565 640: 53% 69/130 [00:35<00:32, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.121 0.101 0 445 640: 54% 70/130 [00:36<00:33, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1208 0.1008 0 424 640: 55% 71/130 [00:36<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1207 0.1009 0 484 640: 55% 72/130 [00:37<00:31, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1206 0.101 0 463 640: 56% 73/130 [00:37<00:30, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1205 0.1009 0 483 640: 57% 74/130 [00:38<00:30, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1204 0.1008 0 430 640: 58% 75/130 [00:38<00:28, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1204 0.1006 0 419 640: 58% 76/130 [00:39<00:28, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1204 0.1004 0 439 640: 59% 77/130 [00:39<00:27, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1203 0.1002 0 397 640: 60% 78/130 [00:40<00:26, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1203 0.1001 0 522 640: 61% 79/130 [00:41<00:26, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1203 0.1004 0 517 640: 62% 80/130 [00:41<00:25, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1203 0.1002 0 446 640: 62% 81/130 [00:42<00:24, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1203 0.1001 0 360 640: 63% 82/130 [00:42<00:24, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1202 0.09997 0 433 640: 64% 83/130 [00:43<00:23, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1199 0.09964 0 279 640: 65% 84/130 [00:43<00:23, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1198 0.09958 0 431 640: 65% 85/130 [00:44<00:22, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1198 0.09956 0 499 640: 66% 86/130 [00:44<00:22, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1197 0.09947 0 459 640: 67% 87/130 [00:45<00:21, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1196 0.09931 0 394 640: 68% 88/130 [00:45<00:21, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1195 0.09935 0 471 640: 68% 89/130 [00:46<00:20, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1195 0.09906 0 355 640: 69% 90/130 [00:46<00:20, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1194 0.09892 0 417 640: 70% 91/130 [00:47<00:19, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1193 0.09867 0 324 640: 71% 92/130 [00:47<00:19, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1192 0.09845 0 382 640: 72% 93/130 [00:48<00:18, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1192 0.09818 0 367 640: 72% 94/130 [00:48<00:19, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1191 0.09809 0 409 640: 73% 95/130 [00:49<00:18, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.119 0.09816 0 479 640: 74% 96/130 [00:49<00:18, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1189 0.09827 0 584 640: 75% 97/130 [00:50<00:18, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1189 0.0985 0 483 640: 75% 98/130 [00:50<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1187 0.09833 0 280 640: 76% 99/130 [00:51<00:16, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1185 0.09841 0 491 640: 77% 100/130 [00:51<00:15, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1185 0.0985 0 455 640: 78% 101/130 [00:52<00:15, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1183 0.09851 0 400 640: 78% 102/130 [00:53<00:14, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1182 0.09831 0 366 640: 79% 103/130 [00:53<00:14, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1182 0.09818 0 457 640: 80% 104/130 [00:54<00:13, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.118 0.09824 0 435 640: 81% 105/130 [00:54<00:12, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.118 0.09838 0 501 640: 82% 106/130 [00:55<00:12, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.118 0.09822 0 386 640: 82% 107/130 [00:55<00:11, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.118 0.09823 0 537 640: 83% 108/130 [00:56<00:11, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1181 0.09817 0 409 640: 84% 109/130 [00:56<00:10, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1181 0.09803 0 386 640: 85% 110/130 [00:57<00:10, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.118 0.09784 0 409 640: 85% 111/130 [00:57<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1179 0.09784 0 532 640: 86% 112/130 [00:58<00:09, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1177 0.09793 0 497 640: 87% 113/130 [00:58<00:08, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1176 0.09791 0 500 640: 88% 114/130 [00:59<00:08, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1176 0.0978 0 445 640: 88% 115/130 [00:59<00:07, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1175 0.09776 0 432 640: 89% 116/130 [01:00<00:07, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1174 0.0977 0 398 640: 90% 117/130 [01:00<00:06, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1173 0.09757 0 435 640: 91% 118/130 [01:01<00:06, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09742 0 365 640: 92% 119/130 [01:01<00:05, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1173 0.09748 0 502 640: 92% 120/130 [01:02<00:05, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1173 0.09742 0 502 640: 93% 121/130 [01:02<00:04, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09752 0 536 640: 94% 122/130 [01:03<00:04, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09751 0 505 640: 95% 123/130 [01:03<00:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09737 0 448 640: 95% 124/130 [01:04<00:03, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09732 0 499 640: 96% 125/130 [01:04<00:02, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09731 0 580 640: 97% 126/130 [01:05<00:02, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1172 0.09723 0 480 640: 98% 127/130 [01:05<00:01, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1171 0.09718 0 451 640: 98% 128/130 [01:06<00:01, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.117 0.09699 0 377 640: 99% 129/130 [01:07<00:00, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.14G 0.1169 0.09692 0 414 640: 100% 130/130 [01:07<00:00, 1.93it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.26it/s]\n",
+ " all 168 2530 0.425 0.708 0.507 0.274\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1106 0.09584 0 477 640: 1% 1/130 [00:00<01:04, 2.00it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1173 0.09514 0 471 640: 2% 2/130 [00:01<01:04, 2.00it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1175 0.09293 0 475 640: 2% 3/130 [00:01<01:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1162 0.09003 0 389 640: 3% 4/130 [00:02<01:04, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1142 0.08881 0 350 640: 4% 5/130 [00:02<01:04, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1123 0.08978 0 498 640: 5% 6/130 [00:03<01:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1115 0.08896 0 450 640: 5% 7/130 [00:03<01:02, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1102 0.08903 0 422 640: 6% 8/130 [00:04<01:02, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1099 0.09053 0 432 640: 7% 9/130 [00:04<01:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1105 0.09085 0 418 640: 8% 10/130 [00:05<01:02, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1112 0.09292 0 551 640: 8% 11/130 [00:05<01:02, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.111 0.09247 0 482 640: 9% 12/130 [00:06<01:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1105 0.09142 0 392 640: 10% 13/130 [00:06<01:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1105 0.09139 0 519 640: 11% 14/130 [00:07<01:02, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1112 0.09142 0 368 640: 12% 15/130 [00:07<01:02, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1112 0.09121 0 489 640: 12% 16/130 [00:08<01:01, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1111 0.09202 0 525 640: 13% 17/130 [00:08<00:59, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1111 0.09096 0 393 640: 14% 18/130 [00:09<00:58, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1112 0.09057 0 399 640: 15% 19/130 [00:09<00:57, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1112 0.09004 0 357 640: 15% 20/130 [00:10<00:56, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.111 0.08937 0 411 640: 16% 21/130 [00:10<00:55, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1106 0.08954 0 450 640: 17% 22/130 [00:11<00:54, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1103 0.08895 0 384 640: 18% 23/130 [00:11<00:54, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1102 0.08897 0 476 640: 18% 24/130 [00:12<00:54, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1101 0.08856 0 413 640: 19% 25/130 [00:12<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1101 0.08857 0 560 640: 20% 26/130 [00:13<00:52, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1102 0.08825 0 453 640: 21% 27/130 [00:13<00:51, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1102 0.08867 0 485 640: 22% 28/130 [00:14<00:52, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1099 0.08842 0 413 640: 22% 29/130 [00:15<00:51, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1098 0.08796 0 432 640: 23% 30/130 [00:15<00:50, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1099 0.08762 0 423 640: 24% 31/130 [00:16<00:49, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1099 0.08754 0 500 640: 25% 32/130 [00:16<00:50, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1099 0.08819 0 637 640: 25% 33/130 [00:17<00:49, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1096 0.08816 0 477 640: 26% 34/130 [00:17<00:48, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1095 0.08768 0 339 640: 27% 35/130 [00:18<00:47, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1095 0.08736 0 415 640: 28% 36/130 [00:18<00:49, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1095 0.08739 0 489 640: 28% 37/130 [00:19<00:50, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1095 0.08735 0 491 640: 29% 38/130 [00:19<00:50, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1093 0.08758 0 537 640: 30% 39/130 [00:20<00:49, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1093 0.0877 0 507 640: 31% 40/130 [00:20<00:49, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1094 0.08732 0 421 640: 32% 41/130 [00:21<00:48, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1094 0.087 0 372 640: 32% 42/130 [00:21<00:46, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1093 0.087 0 534 640: 33% 43/130 [00:22<00:45, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1092 0.08689 0 411 640: 34% 44/130 [00:22<00:44, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1092 0.08649 0 388 640: 35% 45/130 [00:23<00:43, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1089 0.08602 0 318 640: 35% 46/130 [00:23<00:42, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1086 0.08605 0 332 640: 36% 47/130 [00:24<00:42, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1085 0.08583 0 328 640: 37% 48/130 [00:24<00:42, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1084 0.08569 0 453 640: 38% 49/130 [00:25<00:41, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1083 0.08564 0 484 640: 38% 50/130 [00:25<00:40, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1081 0.08554 0 447 640: 39% 51/130 [00:26<00:39, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1081 0.08541 0 329 640: 40% 52/130 [00:26<00:40, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.108 0.0855 0 477 640: 41% 53/130 [00:27<00:39, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.108 0.08524 0 403 640: 42% 54/130 [00:27<00:39, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1081 0.08528 0 472 640: 42% 55/130 [00:28<00:38, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.108 0.08524 0 407 640: 43% 56/130 [00:29<00:38, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1079 0.08533 0 560 640: 44% 57/130 [00:29<00:37, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1078 0.0851 0 403 640: 45% 58/130 [00:30<00:36, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1077 0.08487 0 373 640: 45% 59/130 [00:30<00:36, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1076 0.08471 0 444 640: 46% 60/130 [00:31<00:36, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1076 0.08449 0 424 640: 47% 61/130 [00:31<00:35, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1076 0.08436 0 407 640: 48% 62/130 [00:32<00:35, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1077 0.08441 0 517 640: 48% 63/130 [00:32<00:35, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1077 0.08463 0 546 640: 49% 64/130 [00:33<00:36, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1076 0.08446 0 345 640: 50% 65/130 [00:33<00:35, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1075 0.08434 0 400 640: 51% 66/130 [00:34<00:34, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1074 0.08436 0 500 640: 52% 67/130 [00:34<00:33, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1073 0.08401 0 308 640: 52% 68/130 [00:35<00:32, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1074 0.08397 0 478 640: 53% 69/130 [00:35<00:31, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1073 0.08407 0 472 640: 54% 70/130 [00:36<00:30, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1072 0.08394 0 421 640: 55% 71/130 [00:36<00:30, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08381 0 391 640: 55% 72/130 [00:37<00:29, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08354 0 325 640: 56% 73/130 [00:37<00:29, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08346 0 459 640: 57% 74/130 [00:38<00:28, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08344 0 502 640: 58% 75/130 [00:38<00:27, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08342 0 416 640: 58% 76/130 [00:39<00:27, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08324 0 414 640: 59% 77/130 [00:39<00:27, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1072 0.08345 0 645 640: 60% 78/130 [00:40<00:26, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08324 0 348 640: 61% 79/130 [00:40<00:25, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08314 0 408 640: 62% 80/130 [00:41<00:25, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08305 0 363 640: 62% 81/130 [00:41<00:24, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08336 0 569 640: 63% 82/130 [00:42<00:24, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.0833 0 432 640: 64% 83/130 [00:42<00:23, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1071 0.08355 0 487 640: 65% 84/130 [00:43<00:23, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.0837 0 578 640: 65% 85/130 [00:43<00:22, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1069 0.08379 0 549 640: 66% 86/130 [00:44<00:22, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1068 0.08381 0 461 640: 67% 87/130 [00:45<00:22, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1066 0.08381 0 483 640: 68% 88/130 [00:45<00:22, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1066 0.08377 0 438 640: 68% 89/130 [00:46<00:22, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1068 0.08389 0 499 640: 69% 90/130 [00:46<00:21, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1069 0.08395 0 490 640: 70% 91/130 [00:47<00:20, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08394 0 398 640: 71% 92/130 [00:47<00:21, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.107 0.08396 0 523 640: 72% 93/130 [00:48<00:19, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1069 0.08391 0 469 640: 72% 94/130 [00:48<00:18, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1068 0.0839 0 501 640: 73% 95/130 [00:49<00:18, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1066 0.0837 0 384 640: 74% 96/130 [00:49<00:17, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1066 0.08354 0 321 640: 75% 97/130 [00:50<00:17, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.08343 0 374 640: 75% 98/130 [00:50<00:16, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.0834 0 485 640: 76% 99/130 [00:51<00:15, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.08347 0 471 640: 77% 100/130 [00:51<00:15, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1067 0.08338 0 402 640: 78% 101/130 [00:52<00:14, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1066 0.0832 0 381 640: 78% 102/130 [00:52<00:14, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.08325 0 478 640: 79% 103/130 [00:53<00:13, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.08308 0 391 640: 80% 104/130 [00:53<00:13, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1065 0.08325 0 546 640: 81% 105/130 [00:54<00:12, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1064 0.08319 0 410 640: 82% 106/130 [00:54<00:12, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1064 0.08355 0 564 640: 82% 107/130 [00:55<00:11, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1064 0.08348 0 411 640: 83% 108/130 [00:55<00:11, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1062 0.08337 0 394 640: 84% 109/130 [00:56<00:10, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1062 0.08339 0 545 640: 85% 110/130 [00:56<00:10, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1061 0.08325 0 423 640: 85% 111/130 [00:57<00:09, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08319 0 459 640: 86% 112/130 [00:58<00:09, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08298 0 386 640: 87% 113/130 [00:58<00:09, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08283 0 363 640: 88% 114/130 [00:59<00:08, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08287 0 533 640: 88% 115/130 [00:59<00:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08275 0 380 640: 89% 116/130 [01:00<00:08, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08292 0 646 640: 90% 117/130 [01:00<00:07, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08303 0 543 640: 91% 118/130 [01:01<00:06, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.106 0.08304 0 579 640: 92% 119/130 [01:01<00:05, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1059 0.08311 0 499 640: 92% 120/130 [01:02<00:05, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1059 0.08311 0 469 640: 93% 121/130 [01:02<00:04, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1058 0.08314 0 416 640: 94% 122/130 [01:03<00:04, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08321 0 441 640: 95% 123/130 [01:03<00:03, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08318 0 394 640: 95% 124/130 [01:04<00:03, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08322 0 566 640: 96% 125/130 [01:05<00:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08312 0 371 640: 97% 126/130 [01:05<00:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08309 0 492 640: 98% 127/130 [01:06<00:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08302 0 492 640: 98% 128/130 [01:06<00:01, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1057 0.08293 0 391 640: 99% 129/130 [01:07<00:00, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.14G 0.1056 0.08292 0 401 640: 100% 130/130 [01:07<00:00, 1.93it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.55it/s]\n",
+ " all 168 2530 0.812 0.866 0.873 0.448\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.1062 0.09027 0 564 640: 1% 1/130 [00:00<01:04, 2.00it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.1058 0.07818 0 415 640: 2% 2/130 [00:01<01:06, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.1018 0.07579 0 371 640: 2% 3/130 [00:01<01:06, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09961 0.08013 0 572 640: 3% 4/130 [00:02<01:05, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09939 0.08128 0 489 640: 4% 5/130 [00:02<01:06, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09801 0.08088 0 509 640: 5% 6/130 [00:03<01:09, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09799 0.08135 0 430 640: 5% 7/130 [00:03<01:06, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09837 0.08141 0 456 640: 6% 8/130 [00:04<01:06, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09915 0.08096 0 449 640: 7% 9/130 [00:04<01:04, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.1001 0.08104 0 494 640: 8% 10/130 [00:05<01:03, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09893 0.08043 0 426 640: 8% 11/130 [00:05<01:02, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09792 0.07916 0 303 640: 9% 12/130 [00:06<01:00, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09748 0.0774 0 331 640: 10% 13/130 [00:06<00:59, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09722 0.07702 0 446 640: 11% 14/130 [00:07<00:59, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09796 0.07669 0 430 640: 12% 15/130 [00:07<00:58, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09881 0.07813 0 667 640: 12% 16/130 [00:08<00:58, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09934 0.07851 0 544 640: 13% 17/130 [00:08<00:57, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09962 0.07784 0 387 640: 14% 18/130 [00:09<00:57, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09927 0.07718 0 416 640: 15% 19/130 [00:09<00:56, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09865 0.07688 0 384 640: 15% 20/130 [00:10<00:56, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09833 0.07674 0 401 640: 16% 21/130 [00:10<00:55, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09824 0.07586 0 361 640: 17% 22/130 [00:11<00:55, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0981 0.07581 0 451 640: 18% 23/130 [00:11<00:54, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09799 0.07554 0 408 640: 18% 24/130 [00:12<00:54, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09784 0.07544 0 377 640: 19% 25/130 [00:12<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0981 0.07565 0 581 640: 20% 26/130 [00:13<00:53, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.098 0.07615 0 520 640: 21% 27/130 [00:13<00:52, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09789 0.07606 0 367 640: 22% 28/130 [00:14<00:51, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09773 0.07549 0 371 640: 22% 29/130 [00:15<00:51, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09773 0.07522 0 411 640: 23% 30/130 [00:15<00:54, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09743 0.07497 0 346 640: 24% 31/130 [00:16<00:53, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09737 0.07473 0 408 640: 25% 32/130 [00:16<00:53, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09743 0.07467 0 480 640: 25% 33/130 [00:17<00:51, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09731 0.07431 0 424 640: 26% 34/130 [00:17<00:52, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09733 0.07422 0 491 640: 27% 35/130 [00:18<00:50, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0971 0.07379 0 336 640: 28% 36/130 [00:18<00:49, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09708 0.07351 0 380 640: 28% 37/130 [00:19<00:48, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09709 0.07345 0 517 640: 29% 38/130 [00:19<00:48, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09724 0.0743 0 598 640: 30% 39/130 [00:20<00:46, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09708 0.07445 0 472 640: 31% 40/130 [00:20<00:46, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09711 0.07454 0 409 640: 32% 41/130 [00:21<00:45, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09723 0.07484 0 595 640: 32% 42/130 [00:21<00:45, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09718 0.07492 0 526 640: 33% 43/130 [00:22<00:44, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09717 0.07504 0 433 640: 34% 44/130 [00:22<00:43, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0972 0.07491 0 381 640: 35% 45/130 [00:23<00:43, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09718 0.07479 0 487 640: 35% 46/130 [00:23<00:43, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09715 0.07484 0 490 640: 36% 47/130 [00:24<00:42, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09719 0.07492 0 484 640: 37% 48/130 [00:24<00:42, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09708 0.07454 0 315 640: 38% 49/130 [00:25<00:42, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09733 0.07487 0 544 640: 38% 50/130 [00:26<00:41, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09712 0.07476 0 425 640: 39% 51/130 [00:26<00:41, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09713 0.07503 0 534 640: 40% 52/130 [00:27<00:40, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09707 0.07526 0 553 640: 41% 53/130 [00:27<00:39, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09702 0.07512 0 428 640: 42% 54/130 [00:28<00:40, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09693 0.07505 0 408 640: 42% 55/130 [00:28<00:40, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09671 0.07499 0 387 640: 43% 56/130 [00:29<00:39, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09653 0.075 0 433 640: 44% 57/130 [00:29<00:39, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09646 0.07502 0 463 640: 45% 58/130 [00:30<00:40, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09651 0.07516 0 581 640: 45% 59/130 [00:30<00:39, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09651 0.07507 0 322 640: 46% 60/130 [00:31<00:37, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09646 0.07517 0 553 640: 47% 61/130 [00:31<00:36, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09644 0.0752 0 463 640: 48% 62/130 [00:32<00:35, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09638 0.07531 0 441 640: 48% 63/130 [00:32<00:35, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09634 0.07527 0 436 640: 49% 64/130 [00:33<00:34, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09625 0.0752 0 458 640: 50% 65/130 [00:33<00:33, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09619 0.07509 0 389 640: 51% 66/130 [00:34<00:33, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09633 0.07542 0 614 640: 52% 67/130 [00:35<00:32, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09634 0.07612 0 624 640: 52% 68/130 [00:35<00:31, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09636 0.07604 0 398 640: 53% 69/130 [00:36<00:30, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09645 0.07606 0 477 640: 54% 70/130 [00:36<00:30, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09633 0.07585 0 355 640: 55% 71/130 [00:37<00:30, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0963 0.07584 0 477 640: 55% 72/130 [00:37<00:29, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09621 0.07575 0 442 640: 56% 73/130 [00:38<00:28, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09614 0.07571 0 488 640: 57% 74/130 [00:38<00:28, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09599 0.07575 0 397 640: 58% 75/130 [00:39<00:27, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09591 0.07574 0 431 640: 58% 76/130 [00:39<00:27, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09596 0.07597 0 514 640: 59% 77/130 [00:40<00:26, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09602 0.0758 0 423 640: 60% 78/130 [00:40<00:26, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09592 0.07562 0 343 640: 61% 79/130 [00:41<00:25, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09593 0.07549 0 458 640: 62% 80/130 [00:41<00:25, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09582 0.0754 0 382 640: 62% 81/130 [00:42<00:25, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09578 0.07534 0 451 640: 63% 82/130 [00:42<00:25, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09574 0.07514 0 325 640: 64% 83/130 [00:43<00:25, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09572 0.07511 0 467 640: 65% 84/130 [00:43<00:24, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09575 0.07496 0 395 640: 65% 85/130 [00:44<00:24, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09577 0.07511 0 523 640: 66% 86/130 [00:44<00:23, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09563 0.07493 0 331 640: 67% 87/130 [00:45<00:22, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09558 0.07479 0 428 640: 68% 88/130 [00:45<00:21, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09544 0.07487 0 470 640: 68% 89/130 [00:46<00:21, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09541 0.07482 0 378 640: 69% 90/130 [00:46<00:20, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09554 0.07482 0 529 640: 70% 91/130 [00:47<00:19, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09558 0.07476 0 436 640: 71% 92/130 [00:47<00:19, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09565 0.07495 0 609 640: 72% 93/130 [00:48<00:18, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09576 0.07498 0 499 640: 72% 94/130 [00:48<00:18, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09572 0.07486 0 416 640: 73% 95/130 [00:49<00:17, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09568 0.07487 0 463 640: 74% 96/130 [00:49<00:17, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09562 0.07484 0 454 640: 75% 97/130 [00:50<00:16, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09558 0.07491 0 535 640: 75% 98/130 [00:51<00:16, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09559 0.0749 0 447 640: 76% 99/130 [00:51<00:15, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09554 0.07485 0 420 640: 77% 100/130 [00:52<00:15, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09552 0.07479 0 415 640: 78% 101/130 [00:52<00:14, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09563 0.07482 0 495 640: 78% 102/130 [00:53<00:14, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09561 0.07478 0 406 640: 79% 103/130 [00:53<00:13, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09563 0.07478 0 479 640: 80% 104/130 [00:54<00:13, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09571 0.07504 0 630 640: 81% 105/130 [00:54<00:12, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09562 0.07519 0 595 640: 82% 106/130 [00:55<00:12, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09554 0.07513 0 415 640: 82% 107/130 [00:55<00:12, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09544 0.07499 0 356 640: 83% 108/130 [00:56<00:11, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09534 0.07502 0 495 640: 84% 109/130 [00:56<00:11, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09524 0.07496 0 436 640: 85% 110/130 [00:57<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09522 0.07496 0 532 640: 85% 111/130 [00:57<00:10, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.0952 0.0749 0 376 640: 86% 112/130 [00:58<00:09, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09516 0.07483 0 345 640: 87% 113/130 [00:58<00:08, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09522 0.07497 0 555 640: 88% 114/130 [00:59<00:08, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09522 0.0749 0 472 640: 88% 115/130 [00:59<00:07, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09513 0.07482 0 408 640: 89% 116/130 [01:00<00:07, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09504 0.07467 0 344 640: 90% 117/130 [01:00<00:06, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09502 0.07455 0 403 640: 91% 118/130 [01:01<00:06, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09503 0.07475 0 650 640: 92% 119/130 [01:01<00:05, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09499 0.07465 0 380 640: 92% 120/130 [01:02<00:05, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09503 0.07478 0 485 640: 93% 121/130 [01:03<00:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09506 0.07474 0 439 640: 94% 122/130 [01:03<00:04, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09501 0.07472 0 423 640: 95% 123/130 [01:04<00:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09493 0.07461 0 352 640: 95% 124/130 [01:04<00:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09489 0.07447 0 380 640: 96% 125/130 [01:05<00:02, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09481 0.07432 0 358 640: 97% 126/130 [01:05<00:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09484 0.07427 0 406 640: 98% 127/130 [01:06<00:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09484 0.07434 0 511 640: 98% 128/130 [01:06<00:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09484 0.07426 0 428 640: 99% 129/130 [01:07<00:00, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.14G 0.09484 0.07428 0 437 640: 100% 130/130 [01:07<00:00, 1.93it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:02<00:00, 2.92it/s]\n",
+ " all 168 2530 0.938 0.899 0.968 0.581\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08715 0.0701 0 489 640: 1% 1/130 [00:00<01:04, 2.00it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08797 0.07334 0 493 640: 2% 2/130 [00:01<01:04, 1.99it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08818 0.07172 0 431 640: 2% 3/130 [00:01<01:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08907 0.06926 0 445 640: 3% 4/130 [00:02<01:05, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08925 0.06768 0 359 640: 4% 5/130 [00:02<01:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0886 0.06756 0 461 640: 5% 6/130 [00:03<01:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.09005 0.06865 0 356 640: 5% 7/130 [00:03<01:02, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.09103 0.07094 0 520 640: 6% 8/130 [00:04<01:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08973 0.06926 0 296 640: 7% 9/130 [00:04<01:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0895 0.06871 0 437 640: 8% 10/130 [00:05<01:00, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.09084 0.06975 0 593 640: 8% 11/130 [00:05<01:00, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08952 0.06965 0 350 640: 9% 12/130 [00:06<01:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0894 0.07029 0 454 640: 10% 13/130 [00:06<00:59, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08937 0.07067 0 496 640: 11% 14/130 [00:07<00:58, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08932 0.0707 0 403 640: 12% 15/130 [00:07<00:58, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08988 0.07196 0 492 640: 12% 16/130 [00:08<00:58, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08912 0.07138 0 350 640: 13% 17/130 [00:08<00:57, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0894 0.0714 0 476 640: 14% 18/130 [00:09<00:56, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08893 0.0709 0 415 640: 15% 19/130 [00:09<00:56, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08886 0.06999 0 289 640: 15% 20/130 [00:10<00:58, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08884 0.06991 0 396 640: 16% 21/130 [00:10<00:58, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0885 0.07065 0 540 640: 17% 22/130 [00:11<00:57, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08855 0.0701 0 403 640: 18% 23/130 [00:11<00:58, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0885 0.06969 0 420 640: 18% 24/130 [00:12<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08899 0.06937 0 452 640: 19% 25/130 [00:12<00:56, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08877 0.0689 0 332 640: 20% 26/130 [00:13<00:55, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08881 0.06845 0 362 640: 21% 27/130 [00:13<00:54, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08876 0.06852 0 503 640: 22% 28/130 [00:14<00:53, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08873 0.06904 0 543 640: 22% 29/130 [00:15<00:52, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.089 0.07016 0 586 640: 23% 30/130 [00:15<00:51, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08901 0.07005 0 376 640: 24% 31/130 [00:16<00:50, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08904 0.06986 0 425 640: 25% 32/130 [00:16<00:50, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08901 0.06979 0 458 640: 25% 33/130 [00:17<00:49, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08865 0.06982 0 399 640: 26% 34/130 [00:17<00:49, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08865 0.07006 0 559 640: 27% 35/130 [00:18<00:48, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08859 0.07032 0 461 640: 28% 36/130 [00:18<00:48, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08871 0.0708 0 649 640: 28% 37/130 [00:19<00:47, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08891 0.07113 0 619 640: 29% 38/130 [00:19<00:46, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08909 0.07089 0 424 640: 30% 39/130 [00:20<00:46, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08906 0.07078 0 286 640: 31% 40/130 [00:20<00:46, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08887 0.07083 0 462 640: 32% 41/130 [00:21<00:45, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08881 0.07109 0 502 640: 32% 42/130 [00:21<00:44, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08908 0.07137 0 612 640: 33% 43/130 [00:22<00:44, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08896 0.07134 0 439 640: 34% 44/130 [00:22<00:44, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08875 0.07141 0 335 640: 35% 45/130 [00:23<00:43, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08872 0.07161 0 451 640: 35% 46/130 [00:23<00:42, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08864 0.0715 0 442 640: 36% 47/130 [00:24<00:42, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08869 0.07144 0 445 640: 37% 48/130 [00:24<00:44, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0886 0.07139 0 433 640: 38% 49/130 [00:25<00:43, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08852 0.0714 0 441 640: 38% 50/130 [00:25<00:43, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08863 0.07169 0 599 640: 39% 51/130 [00:26<00:42, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08874 0.07199 0 657 640: 40% 52/130 [00:26<00:42, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08866 0.07189 0 408 640: 41% 53/130 [00:27<00:40, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08873 0.07192 0 530 640: 42% 54/130 [00:27<00:39, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08865 0.07187 0 477 640: 42% 55/130 [00:28<00:38, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08859 0.07165 0 417 640: 43% 56/130 [00:29<00:38, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08843 0.07133 0 315 640: 44% 57/130 [00:29<00:37, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08844 0.07121 0 457 640: 45% 58/130 [00:30<00:36, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0884 0.07123 0 466 640: 45% 59/130 [00:30<00:36, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08835 0.07121 0 474 640: 46% 60/130 [00:31<00:36, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08858 0.07128 0 454 640: 47% 61/130 [00:31<00:35, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08856 0.07131 0 489 640: 48% 62/130 [00:32<00:34, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08862 0.07115 0 440 640: 48% 63/130 [00:32<00:33, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08859 0.07125 0 571 640: 49% 64/130 [00:33<00:34, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0885 0.07117 0 423 640: 50% 65/130 [00:33<00:33, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08853 0.07108 0 499 640: 51% 66/130 [00:34<00:32, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08836 0.07083 0 338 640: 52% 67/130 [00:34<00:31, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0884 0.07065 0 421 640: 52% 68/130 [00:35<00:31, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08843 0.07081 0 501 640: 53% 69/130 [00:35<00:31, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08843 0.07056 0 299 640: 54% 70/130 [00:36<00:30, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08847 0.07053 0 495 640: 55% 71/130 [00:36<00:29, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08838 0.0705 0 467 640: 55% 72/130 [00:37<00:29, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08829 0.07052 0 487 640: 56% 73/130 [00:37<00:30, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08812 0.07046 0 361 640: 57% 74/130 [00:38<00:30, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08802 0.07063 0 504 640: 58% 75/130 [00:38<00:29, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0881 0.07077 0 592 640: 58% 76/130 [00:39<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08816 0.07068 0 411 640: 59% 77/130 [00:39<00:28, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08814 0.07079 0 504 640: 60% 78/130 [00:40<00:28, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08822 0.07128 0 476 640: 61% 79/130 [00:40<00:27, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08816 0.07123 0 418 640: 62% 80/130 [00:41<00:26, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08814 0.07123 0 478 640: 62% 81/130 [00:42<00:25, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08797 0.07106 0 336 640: 63% 82/130 [00:42<00:24, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08795 0.07091 0 417 640: 64% 83/130 [00:43<00:24, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08791 0.07076 0 416 640: 65% 84/130 [00:43<00:24, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08794 0.07081 0 548 640: 65% 85/130 [00:44<00:23, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08799 0.07063 0 372 640: 66% 86/130 [00:44<00:22, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08804 0.07043 0 385 640: 67% 87/130 [00:45<00:21, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08805 0.07055 0 513 640: 68% 88/130 [00:45<00:21, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08803 0.0704 0 405 640: 68% 89/130 [00:46<00:20, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08798 0.07042 0 392 640: 69% 90/130 [00:46<00:20, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08797 0.07043 0 466 640: 70% 91/130 [00:47<00:19, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08797 0.07048 0 479 640: 71% 92/130 [00:47<00:19, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08799 0.07033 0 389 640: 72% 93/130 [00:48<00:18, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08806 0.07021 0 341 640: 72% 94/130 [00:48<00:18, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08794 0.07018 0 386 640: 73% 95/130 [00:49<00:17, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08787 0.0702 0 515 640: 74% 96/130 [00:49<00:17, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08785 0.07011 0 409 640: 75% 97/130 [00:50<00:16, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08771 0.07008 0 412 640: 75% 98/130 [00:50<00:16, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08782 0.07019 0 524 640: 76% 99/130 [00:51<00:16, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08792 0.07008 0 454 640: 77% 100/130 [00:51<00:16, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08789 0.07006 0 465 640: 78% 101/130 [00:52<00:15, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08783 0.07015 0 552 640: 78% 102/130 [00:53<00:15, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08776 0.07015 0 497 640: 79% 103/130 [00:53<00:14, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08773 0.0702 0 457 640: 80% 104/130 [00:54<00:14, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08781 0.07019 0 451 640: 81% 105/130 [00:54<00:13, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08782 0.07027 0 535 640: 82% 106/130 [00:55<00:12, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08784 0.07025 0 398 640: 82% 107/130 [00:55<00:12, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08784 0.07028 0 469 640: 83% 108/130 [00:56<00:11, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08782 0.07037 0 617 640: 84% 109/130 [00:56<00:10, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08776 0.07048 0 570 640: 85% 110/130 [00:57<00:10, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08778 0.07051 0 546 640: 85% 111/130 [00:57<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0878 0.07045 0 314 640: 86% 112/130 [00:58<00:09, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08776 0.07041 0 438 640: 87% 113/130 [00:58<00:08, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08781 0.07042 0 538 640: 88% 114/130 [00:59<00:08, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08775 0.0704 0 363 640: 88% 115/130 [00:59<00:07, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0877 0.07033 0 412 640: 89% 116/130 [01:00<00:07, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08773 0.07026 0 466 640: 90% 117/130 [01:00<00:06, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08764 0.07024 0 505 640: 91% 118/130 [01:01<00:06, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08761 0.07025 0 414 640: 92% 119/130 [01:01<00:05, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08758 0.07021 0 381 640: 92% 120/130 [01:02<00:05, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08759 0.07013 0 394 640: 93% 121/130 [01:02<00:04, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08765 0.07016 0 553 640: 94% 122/130 [01:03<00:04, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08763 0.07019 0 455 640: 95% 123/130 [01:03<00:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08767 0.07007 0 422 640: 95% 124/130 [01:04<00:03, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.0876 0.07 0 411 640: 96% 125/130 [01:04<00:02, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08755 0.06994 0 485 640: 97% 126/130 [01:05<00:02, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08759 0.06986 0 340 640: 98% 127/130 [01:06<00:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08754 0.06976 0 398 640: 98% 128/130 [01:06<00:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08759 0.06976 0 530 640: 99% 129/130 [01:07<00:00, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.14G 0.08761 0.06977 0 407 640: 100% 130/130 [01:07<00:00, 1.92it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.75it/s]\n",
+ " all 168 2530 0.941 0.888 0.971 0.603\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08617 0.06823 0 442 640: 1% 1/130 [00:00<01:04, 1.99it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.09176 0.06386 0 421 640: 2% 2/130 [00:01<01:06, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08969 0.06826 0 600 640: 2% 3/130 [00:01<01:04, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0877 0.06332 0 338 640: 3% 4/130 [00:02<01:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08574 0.06427 0 534 640: 4% 5/130 [00:02<01:03, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0847 0.06481 0 436 640: 5% 6/130 [00:03<01:03, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08375 0.06463 0 423 640: 5% 7/130 [00:03<01:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08311 0.06434 0 397 640: 6% 8/130 [00:04<01:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08298 0.06435 0 501 640: 7% 9/130 [00:04<01:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08298 0.06591 0 604 640: 8% 10/130 [00:05<01:02, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08303 0.06515 0 364 640: 8% 11/130 [00:05<01:01, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08279 0.06437 0 397 640: 9% 12/130 [00:06<01:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08256 0.06436 0 436 640: 10% 13/130 [00:06<00:59, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08259 0.06411 0 468 640: 11% 14/130 [00:07<00:59, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08252 0.06387 0 470 640: 12% 15/130 [00:07<00:58, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08248 0.06331 0 407 640: 12% 16/130 [00:08<00:59, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08213 0.06318 0 428 640: 13% 17/130 [00:08<00:59, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08189 0.0635 0 478 640: 14% 18/130 [00:09<01:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08204 0.06339 0 448 640: 15% 19/130 [00:09<01:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0825 0.06316 0 446 640: 15% 20/130 [00:10<01:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0827 0.06293 0 426 640: 16% 21/130 [00:11<01:00, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08315 0.06296 0 552 640: 17% 22/130 [00:11<01:00, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08284 0.06256 0 365 640: 18% 23/130 [00:12<00:58, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08284 0.06269 0 454 640: 18% 24/130 [00:12<00:56, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08254 0.06228 0 360 640: 19% 25/130 [00:13<00:54, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08209 0.06175 0 275 640: 20% 26/130 [00:13<00:54, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08235 0.0622 0 519 640: 21% 27/130 [00:14<00:53, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08242 0.062 0 408 640: 22% 28/130 [00:14<00:52, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08299 0.06219 0 386 640: 22% 29/130 [00:15<00:51, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08338 0.06257 0 521 640: 23% 30/130 [00:15<00:51, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08325 0.06203 0 389 640: 24% 31/130 [00:16<00:50, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08325 0.06246 0 530 640: 25% 32/130 [00:16<00:50, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08308 0.06211 0 345 640: 25% 33/130 [00:17<00:49, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08302 0.06246 0 494 640: 26% 34/130 [00:17<00:49, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08295 0.06239 0 404 640: 27% 35/130 [00:18<00:48, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08295 0.06245 0 425 640: 28% 36/130 [00:18<00:47, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0829 0.06251 0 460 640: 28% 37/130 [00:19<00:47, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08279 0.06236 0 463 640: 29% 38/130 [00:19<00:47, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0827 0.0624 0 468 640: 30% 39/130 [00:20<00:46, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08283 0.06251 0 530 640: 31% 40/130 [00:20<00:45, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08271 0.06278 0 475 640: 32% 41/130 [00:21<00:45, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08261 0.06258 0 382 640: 32% 42/130 [00:21<00:46, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08258 0.06281 0 562 640: 33% 43/130 [00:22<00:46, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08249 0.06268 0 389 640: 34% 44/130 [00:22<00:45, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06247 0 304 640: 35% 45/130 [00:23<00:46, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08231 0.06247 0 509 640: 35% 46/130 [00:24<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06291 0 545 640: 36% 47/130 [00:24<00:46, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08258 0.06297 0 524 640: 37% 48/130 [00:25<00:44, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08257 0.063 0 459 640: 38% 49/130 [00:25<00:43, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08255 0.06296 0 465 640: 38% 50/130 [00:26<00:42, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08239 0.063 0 349 640: 39% 51/130 [00:26<00:41, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0823 0.06299 0 424 640: 40% 52/130 [00:27<00:40, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08231 0.06303 0 486 640: 41% 53/130 [00:27<00:39, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08222 0.06331 0 583 640: 42% 54/130 [00:28<00:39, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08226 0.0632 0 367 640: 42% 55/130 [00:28<00:38, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08232 0.06307 0 336 640: 43% 56/130 [00:29<00:37, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08234 0.06307 0 380 640: 44% 57/130 [00:29<00:37, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08242 0.06338 0 547 640: 45% 58/130 [00:30<00:37, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08222 0.06339 0 443 640: 45% 59/130 [00:30<00:36, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08211 0.06317 0 328 640: 46% 60/130 [00:31<00:35, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08211 0.06328 0 517 640: 47% 61/130 [00:31<00:35, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08198 0.06308 0 366 640: 48% 62/130 [00:32<00:34, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08205 0.06306 0 442 640: 48% 63/130 [00:32<00:34, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08219 0.06314 0 499 640: 49% 64/130 [00:33<00:33, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08223 0.06318 0 464 640: 50% 65/130 [00:33<00:33, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08229 0.06325 0 475 640: 51% 66/130 [00:34<00:33, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06346 0 407 640: 52% 67/130 [00:34<00:32, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06329 0 340 640: 52% 68/130 [00:35<00:31, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08234 0.06335 0 418 640: 53% 69/130 [00:35<00:31, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08219 0.06315 0 357 640: 54% 70/130 [00:36<00:31, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08243 0.06324 0 558 640: 55% 71/130 [00:37<00:31, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08252 0.06336 0 519 640: 55% 72/130 [00:37<00:31, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08239 0.06318 0 318 640: 56% 73/130 [00:38<00:31, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08246 0.06313 0 431 640: 57% 74/130 [00:38<00:32, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08248 0.06335 0 585 640: 58% 75/130 [00:39<00:30, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08247 0.06339 0 432 640: 58% 76/130 [00:39<00:29, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08245 0.06337 0 481 640: 59% 77/130 [00:40<00:28, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06334 0 411 640: 60% 78/130 [00:40<00:27, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08238 0.06337 0 457 640: 61% 79/130 [00:41<00:26, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08236 0.06339 0 486 640: 62% 80/130 [00:41<00:25, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08237 0.06339 0 355 640: 62% 81/130 [00:42<00:25, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08225 0.0633 0 345 640: 63% 82/130 [00:42<00:24, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0821 0.06329 0 459 640: 64% 83/130 [00:43<00:24, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08203 0.06332 0 500 640: 65% 84/130 [00:43<00:23, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08207 0.06349 0 540 640: 65% 85/130 [00:44<00:22, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08208 0.06343 0 351 640: 66% 86/130 [00:44<00:22, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0821 0.06349 0 490 640: 67% 87/130 [00:45<00:22, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08206 0.06344 0 446 640: 68% 88/130 [00:45<00:21, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.082 0.06353 0 487 640: 68% 89/130 [00:46<00:20, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08192 0.06338 0 332 640: 69% 90/130 [00:47<00:20, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08192 0.06328 0 385 640: 70% 91/130 [00:47<00:19, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08193 0.06322 0 451 640: 71% 92/130 [00:48<00:19, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08195 0.06322 0 510 640: 72% 93/130 [00:48<00:18, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08191 0.06321 0 487 640: 72% 94/130 [00:49<00:18, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08196 0.06319 0 515 640: 73% 95/130 [00:49<00:17, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08191 0.06305 0 338 640: 74% 96/130 [00:50<00:17, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08197 0.06315 0 570 640: 75% 97/130 [00:50<00:17, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0819 0.06304 0 322 640: 75% 98/130 [00:51<00:17, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08187 0.06303 0 422 640: 76% 99/130 [00:51<00:16, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08194 0.06307 0 462 640: 77% 100/130 [00:52<00:16, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08197 0.0632 0 485 640: 78% 101/130 [00:52<00:15, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08194 0.06309 0 351 640: 78% 102/130 [00:53<00:15, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08197 0.06309 0 462 640: 79% 103/130 [00:54<00:14, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08196 0.06311 0 531 640: 80% 104/130 [00:54<00:13, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08191 0.06298 0 332 640: 81% 105/130 [00:55<00:13, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.082 0.06296 0 468 640: 82% 106/130 [00:55<00:12, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08197 0.06292 0 393 640: 82% 107/130 [00:56<00:11, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08192 0.06281 0 420 640: 83% 108/130 [00:56<00:11, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08191 0.06286 0 472 640: 84% 109/130 [00:57<00:10, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08189 0.06277 0 445 640: 85% 110/130 [00:57<00:10, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0818 0.06286 0 466 640: 85% 111/130 [00:58<00:09, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08177 0.06301 0 586 640: 86% 112/130 [00:58<00:09, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08171 0.06304 0 361 640: 87% 113/130 [00:59<00:08, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08164 0.06293 0 323 640: 88% 114/130 [00:59<00:08, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0816 0.06291 0 483 640: 88% 115/130 [01:00<00:07, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08161 0.06296 0 523 640: 89% 116/130 [01:00<00:07, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0816 0.063 0 532 640: 90% 117/130 [01:01<00:06, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0816 0.06299 0 381 640: 91% 118/130 [01:01<00:06, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0816 0.06305 0 526 640: 92% 119/130 [01:02<00:05, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08158 0.06304 0 440 640: 92% 120/130 [01:02<00:05, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08155 0.06312 0 478 640: 93% 121/130 [01:03<00:04, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08153 0.06314 0 488 640: 94% 122/130 [01:03<00:04, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0816 0.06309 0 383 640: 95% 123/130 [01:04<00:03, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08165 0.06301 0 356 640: 95% 124/130 [01:04<00:03, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08168 0.06309 0 545 640: 96% 125/130 [01:05<00:02, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08168 0.06308 0 310 640: 97% 126/130 [01:06<00:02, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.0817 0.0631 0 509 640: 98% 127/130 [01:06<00:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08173 0.06315 0 420 640: 98% 128/130 [01:07<00:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08167 0.06307 0 390 640: 99% 129/130 [01:07<00:00, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.14G 0.08164 0.0631 0 395 640: 100% 130/130 [01:08<00:00, 1.91it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.57it/s]\n",
+ " all 168 2530 0.968 0.915 0.979 0.683\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.08291 0.06853 0 469 640: 1% 1/130 [00:00<01:04, 2.00it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07704 0.06335 0 417 640: 2% 2/130 [00:01<01:04, 1.99it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07724 0.06402 0 473 640: 2% 3/130 [00:01<01:03, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07747 0.06323 0 366 640: 3% 4/130 [00:02<01:04, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07632 0.05941 0 272 640: 4% 5/130 [00:02<01:03, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07538 0.05867 0 423 640: 5% 6/130 [00:03<01:02, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07431 0.05833 0 453 640: 5% 7/130 [00:03<01:02, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07545 0.06098 0 691 640: 6% 8/130 [00:04<01:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07699 0.06223 0 613 640: 7% 9/130 [00:04<01:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0778 0.06135 0 405 640: 8% 10/130 [00:05<01:00, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07843 0.06111 0 431 640: 8% 11/130 [00:05<01:00, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07887 0.06264 0 614 640: 9% 12/130 [00:06<01:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07869 0.06359 0 505 640: 10% 13/130 [00:06<00:59, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07875 0.06356 0 414 640: 11% 14/130 [00:07<00:59, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07844 0.06298 0 404 640: 12% 15/130 [00:07<01:00, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07803 0.06173 0 249 640: 12% 16/130 [00:08<01:02, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07766 0.06161 0 345 640: 13% 17/130 [00:08<01:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07795 0.06229 0 587 640: 14% 18/130 [00:09<01:01, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0782 0.06236 0 480 640: 15% 19/130 [00:09<01:00, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07845 0.06242 0 523 640: 15% 20/130 [00:10<00:59, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07835 0.06259 0 503 640: 16% 21/130 [00:10<00:57, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07835 0.06253 0 404 640: 17% 22/130 [00:11<00:56, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07812 0.06268 0 430 640: 18% 23/130 [00:11<00:55, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07821 0.06223 0 405 640: 18% 24/130 [00:12<00:55, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07818 0.0622 0 467 640: 19% 25/130 [00:12<00:53, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0784 0.06219 0 448 640: 20% 26/130 [00:13<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07855 0.06198 0 449 640: 21% 27/130 [00:13<00:52, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07884 0.06249 0 567 640: 22% 28/130 [00:14<00:52, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07836 0.06235 0 457 640: 22% 29/130 [00:15<00:51, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07796 0.06204 0 468 640: 23% 30/130 [00:15<00:50, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07811 0.06227 0 501 640: 24% 31/130 [00:16<00:50, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07799 0.06239 0 511 640: 25% 32/130 [00:16<00:50, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0778 0.06219 0 397 640: 25% 33/130 [00:17<00:49, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07772 0.06257 0 490 640: 26% 34/130 [00:17<00:48, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07785 0.06227 0 386 640: 27% 35/130 [00:18<00:48, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07778 0.06236 0 480 640: 28% 36/130 [00:18<00:48, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07777 0.06226 0 495 640: 28% 37/130 [00:19<00:47, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07766 0.062 0 364 640: 29% 38/130 [00:19<00:46, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07769 0.06191 0 470 640: 30% 39/130 [00:20<00:46, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07767 0.06184 0 492 640: 31% 40/130 [00:20<00:47, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07769 0.06173 0 439 640: 32% 41/130 [00:21<00:48, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07762 0.06167 0 466 640: 32% 42/130 [00:21<00:47, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07769 0.06165 0 449 640: 33% 43/130 [00:22<00:47, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07773 0.06147 0 440 640: 34% 44/130 [00:22<00:48, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07766 0.06169 0 554 640: 35% 45/130 [00:23<00:46, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07764 0.06154 0 466 640: 35% 46/130 [00:23<00:45, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0776 0.06159 0 486 640: 36% 47/130 [00:24<00:43, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07763 0.0617 0 415 640: 37% 48/130 [00:25<00:43, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07761 0.06174 0 459 640: 38% 49/130 [00:25<00:42, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07754 0.06153 0 379 640: 38% 50/130 [00:26<00:41, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07755 0.06128 0 354 640: 39% 51/130 [00:26<00:40, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07756 0.06111 0 433 640: 40% 52/130 [00:27<00:40, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07746 0.06099 0 343 640: 41% 53/130 [00:27<00:39, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07746 0.0609 0 446 640: 42% 54/130 [00:28<00:38, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07752 0.06067 0 328 640: 42% 55/130 [00:28<00:38, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07766 0.06058 0 467 640: 43% 56/130 [00:29<00:38, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07788 0.06065 0 515 640: 44% 57/130 [00:29<00:37, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07795 0.06072 0 485 640: 45% 58/130 [00:30<00:36, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07792 0.06071 0 442 640: 45% 59/130 [00:30<00:36, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0779 0.06076 0 483 640: 46% 60/130 [00:31<00:36, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07792 0.06098 0 602 640: 47% 61/130 [00:31<00:35, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07786 0.0609 0 417 640: 48% 62/130 [00:32<00:35, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07773 0.06074 0 404 640: 48% 63/130 [00:32<00:34, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07764 0.06059 0 435 640: 49% 64/130 [00:33<00:34, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07765 0.06043 0 423 640: 50% 65/130 [00:33<00:33, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07761 0.06055 0 457 640: 51% 66/130 [00:34<00:33, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07768 0.06062 0 555 640: 52% 67/130 [00:34<00:33, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07772 0.06056 0 463 640: 52% 68/130 [00:35<00:35, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07768 0.0604 0 424 640: 53% 69/130 [00:36<00:34, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07774 0.06054 0 398 640: 54% 70/130 [00:36<00:34, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0777 0.06067 0 570 640: 55% 71/130 [00:37<00:32, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0777 0.06059 0 451 640: 55% 72/130 [00:37<00:31, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07771 0.06063 0 489 640: 56% 73/130 [00:38<00:30, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07766 0.06061 0 453 640: 57% 74/130 [00:38<00:29, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07775 0.06081 0 580 640: 58% 75/130 [00:39<00:28, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07777 0.06087 0 505 640: 58% 76/130 [00:39<00:28, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07768 0.0607 0 297 640: 59% 77/130 [00:40<00:27, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07771 0.0606 0 421 640: 60% 78/130 [00:40<00:26, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07765 0.06058 0 442 640: 61% 79/130 [00:41<00:26, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07759 0.0605 0 404 640: 62% 80/130 [00:41<00:26, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07755 0.06055 0 504 640: 62% 81/130 [00:42<00:25, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07748 0.06041 0 310 640: 63% 82/130 [00:42<00:24, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07736 0.06033 0 424 640: 64% 83/130 [00:43<00:24, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07738 0.06064 0 467 640: 65% 84/130 [00:43<00:23, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07731 0.06063 0 432 640: 65% 85/130 [00:44<00:23, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07729 0.06062 0 490 640: 66% 86/130 [00:44<00:22, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07722 0.06055 0 421 640: 67% 87/130 [00:45<00:21, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07724 0.06042 0 372 640: 68% 88/130 [00:45<00:21, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07717 0.0603 0 398 640: 68% 89/130 [00:46<00:20, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07717 0.06013 0 347 640: 69% 90/130 [00:46<00:20, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07726 0.06013 0 437 640: 70% 91/130 [00:47<00:20, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07719 0.06021 0 419 640: 71% 92/130 [00:48<00:20, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0772 0.06026 0 444 640: 72% 93/130 [00:48<00:19, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07726 0.06021 0 395 640: 72% 94/130 [00:49<00:19, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07723 0.06013 0 394 640: 73% 95/130 [00:49<00:19, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07728 0.06017 0 487 640: 74% 96/130 [00:50<00:20, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07727 0.06016 0 503 640: 75% 97/130 [00:50<00:18, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07727 0.06017 0 510 640: 75% 98/130 [00:51<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07726 0.06019 0 473 640: 76% 99/130 [00:51<00:16, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07721 0.06007 0 351 640: 77% 100/130 [00:52<00:16, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07709 0.0601 0 532 640: 78% 101/130 [00:52<00:15, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07709 0.06001 0 400 640: 78% 102/130 [00:53<00:14, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0771 0.05991 0 286 640: 79% 103/130 [00:53<00:13, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07712 0.05985 0 407 640: 80% 104/130 [00:54<00:13, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07709 0.06002 0 494 640: 81% 105/130 [00:54<00:12, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07713 0.06006 0 529 640: 82% 106/130 [00:55<00:12, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07723 0.0601 0 551 640: 82% 107/130 [00:55<00:11, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07719 0.0601 0 452 640: 83% 108/130 [00:56<00:11, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07723 0.06007 0 441 640: 84% 109/130 [00:57<00:10, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07717 0.06001 0 449 640: 85% 110/130 [00:57<00:10, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07714 0.06002 0 454 640: 85% 111/130 [00:58<00:09, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0771 0.06 0 433 640: 86% 112/130 [00:58<00:09, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07722 0.06013 0 521 640: 87% 113/130 [00:59<00:08, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07723 0.06026 0 557 640: 88% 114/130 [00:59<00:08, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07727 0.06029 0 516 640: 88% 115/130 [01:00<00:07, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07722 0.0602 0 362 640: 89% 116/130 [01:00<00:07, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07722 0.06023 0 502 640: 90% 117/130 [01:01<00:06, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07724 0.0603 0 505 640: 91% 118/130 [01:01<00:06, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07728 0.06028 0 388 640: 92% 119/130 [01:02<00:05, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07729 0.06038 0 646 640: 92% 120/130 [01:02<00:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0773 0.06038 0 411 640: 93% 121/130 [01:03<00:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07724 0.06038 0 367 640: 94% 122/130 [01:03<00:04, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07717 0.06044 0 489 640: 95% 123/130 [01:04<00:03, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.0771 0.06037 0 391 640: 95% 124/130 [01:04<00:03, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07707 0.06028 0 363 640: 96% 125/130 [01:05<00:02, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07704 0.06037 0 586 640: 97% 126/130 [01:05<00:02, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07703 0.06037 0 444 640: 98% 127/130 [01:06<00:01, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07702 0.0603 0 356 640: 98% 128/130 [01:06<00:01, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07705 0.06037 0 625 640: 99% 129/130 [01:07<00:00, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.14G 0.07708 0.06033 0 362 640: 100% 130/130 [01:07<00:00, 1.92it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.68it/s]\n",
+ " all 168 2530 0.964 0.927 0.984 0.732\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.06819 0.05304 0 385 640: 1% 1/130 [00:00<01:04, 1.99it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07332 0.05769 0 469 640: 2% 2/130 [00:01<01:05, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07376 0.05617 0 461 640: 2% 3/130 [00:01<01:04, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07256 0.05553 0 339 640: 3% 4/130 [00:02<01:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07224 0.05709 0 458 640: 4% 5/130 [00:02<01:03, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07171 0.05764 0 445 640: 5% 6/130 [00:03<01:04, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07191 0.05604 0 363 640: 5% 7/130 [00:03<01:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07209 0.0565 0 477 640: 6% 8/130 [00:04<01:01, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07205 0.05589 0 378 640: 7% 9/130 [00:04<01:02, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07167 0.05577 0 447 640: 8% 10/130 [00:05<01:03, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07222 0.05558 0 432 640: 8% 11/130 [00:05<01:04, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07213 0.05542 0 375 640: 9% 12/130 [00:06<01:03, 1.87it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07244 0.05616 0 581 640: 10% 13/130 [00:06<01:03, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07279 0.05771 0 678 640: 11% 14/130 [00:07<01:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07306 0.05736 0 338 640: 12% 15/130 [00:07<01:03, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07316 0.05791 0 494 640: 12% 16/130 [00:08<01:01, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07325 0.05802 0 414 640: 13% 17/130 [00:08<00:59, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07344 0.05803 0 439 640: 14% 18/130 [00:09<00:59, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07357 0.05839 0 526 640: 15% 19/130 [00:09<00:57, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07353 0.05791 0 405 640: 15% 20/130 [00:10<00:56, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07361 0.05795 0 422 640: 16% 21/130 [00:10<00:55, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0734 0.05782 0 416 640: 17% 22/130 [00:11<00:55, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07331 0.05739 0 347 640: 18% 23/130 [00:12<00:54, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07314 0.05714 0 399 640: 18% 24/130 [00:12<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07348 0.05718 0 488 640: 19% 25/130 [00:13<00:53, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0735 0.05705 0 419 640: 20% 26/130 [00:13<00:53, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07319 0.05658 0 290 640: 21% 27/130 [00:14<00:52, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07332 0.05637 0 454 640: 22% 28/130 [00:14<00:51, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07308 0.05633 0 425 640: 22% 29/130 [00:15<00:51, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07351 0.05684 0 491 640: 23% 30/130 [00:15<00:51, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07354 0.05694 0 525 640: 24% 31/130 [00:16<00:50, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07357 0.0568 0 434 640: 25% 32/130 [00:16<00:49, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07352 0.05684 0 460 640: 25% 33/130 [00:17<00:49, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07346 0.05664 0 396 640: 26% 34/130 [00:17<00:49, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07331 0.05659 0 387 640: 27% 35/130 [00:18<00:48, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07371 0.05752 0 589 640: 28% 36/130 [00:18<00:47, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07366 0.05747 0 516 640: 28% 37/130 [00:19<00:48, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07382 0.05727 0 414 640: 29% 38/130 [00:19<00:50, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07395 0.05729 0 512 640: 30% 39/130 [00:20<00:50, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07396 0.05731 0 477 640: 31% 40/130 [00:20<00:49, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07375 0.05711 0 480 640: 32% 41/130 [00:21<00:48, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07375 0.05715 0 475 640: 32% 42/130 [00:22<00:48, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07383 0.05708 0 482 640: 33% 43/130 [00:22<00:46, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07376 0.05699 0 451 640: 34% 44/130 [00:23<00:45, 1.89it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07388 0.05711 0 518 640: 35% 45/130 [00:23<00:44, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07367 0.05703 0 334 640: 35% 46/130 [00:24<00:44, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07369 0.05681 0 376 640: 36% 47/130 [00:24<00:43, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07363 0.05731 0 512 640: 37% 48/130 [00:25<00:42, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07356 0.05718 0 410 640: 38% 49/130 [00:25<00:41, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07348 0.05738 0 562 640: 38% 50/130 [00:26<00:41, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07345 0.05763 0 537 640: 39% 51/130 [00:26<00:40, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0735 0.05754 0 400 640: 40% 52/130 [00:27<00:39, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07367 0.05753 0 413 640: 41% 53/130 [00:27<00:39, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07379 0.05777 0 430 640: 42% 54/130 [00:28<00:39, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07388 0.05791 0 507 640: 42% 55/130 [00:28<00:38, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07392 0.05816 0 559 640: 43% 56/130 [00:29<00:37, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0738 0.05818 0 487 640: 44% 57/130 [00:29<00:37, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07378 0.05814 0 451 640: 45% 58/130 [00:30<00:37, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07373 0.05815 0 507 640: 45% 59/130 [00:30<00:36, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0737 0.05817 0 477 640: 46% 60/130 [00:31<00:35, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07366 0.05809 0 458 640: 47% 61/130 [00:31<00:35, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07357 0.05796 0 410 640: 48% 62/130 [00:32<00:36, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07366 0.05799 0 461 640: 48% 63/130 [00:32<00:36, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07349 0.05793 0 437 640: 49% 64/130 [00:33<00:35, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07345 0.05801 0 448 640: 50% 65/130 [00:33<00:35, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0735 0.05802 0 535 640: 51% 66/130 [00:34<00:35, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07344 0.05786 0 373 640: 52% 67/130 [00:35<00:35, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07342 0.05785 0 446 640: 52% 68/130 [00:35<00:33, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07342 0.05783 0 444 640: 53% 69/130 [00:36<00:32, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07336 0.05783 0 488 640: 54% 70/130 [00:36<00:31, 1.88it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07351 0.05807 0 542 640: 55% 71/130 [00:37<00:30, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07344 0.05806 0 403 640: 55% 72/130 [00:37<00:29, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07347 0.05813 0 573 640: 56% 73/130 [00:38<00:29, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07349 0.05801 0 433 640: 57% 74/130 [00:38<00:28, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0734 0.05793 0 375 640: 58% 75/130 [00:39<00:28, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07334 0.05815 0 597 640: 58% 76/130 [00:39<00:27, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0735 0.05852 0 642 640: 59% 77/130 [00:40<00:26, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07346 0.05848 0 425 640: 60% 78/130 [00:40<00:26, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07353 0.05841 0 278 640: 61% 79/130 [00:41<00:26, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07361 0.0582 0 336 640: 62% 80/130 [00:41<00:25, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07359 0.05805 0 342 640: 62% 81/130 [00:42<00:24, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07349 0.05788 0 285 640: 63% 82/130 [00:42<00:24, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07352 0.05777 0 418 640: 64% 83/130 [00:43<00:23, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07347 0.05779 0 426 640: 65% 84/130 [00:43<00:23, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07338 0.05769 0 425 640: 65% 85/130 [00:44<00:22, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07333 0.05778 0 446 640: 66% 86/130 [00:44<00:22, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07325 0.05772 0 376 640: 67% 87/130 [00:45<00:21, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07327 0.05767 0 459 640: 68% 88/130 [00:45<00:21, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07327 0.05755 0 356 640: 68% 89/130 [00:46<00:21, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07313 0.0574 0 313 640: 69% 90/130 [00:47<00:22, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07322 0.05741 0 418 640: 70% 91/130 [00:47<00:21, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07325 0.05755 0 601 640: 71% 92/130 [00:48<00:20, 1.83it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0733 0.05768 0 587 640: 72% 93/130 [00:48<00:20, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0733 0.05759 0 378 640: 72% 94/130 [00:49<00:19, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07336 0.05763 0 514 640: 73% 95/130 [00:49<00:18, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07325 0.05761 0 469 640: 74% 96/130 [00:50<00:17, 1.91it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07329 0.05756 0 417 640: 75% 97/130 [00:50<00:17, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07326 0.05753 0 476 640: 75% 98/130 [00:51<00:16, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0733 0.05754 0 480 640: 76% 99/130 [00:51<00:15, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07327 0.05749 0 363 640: 77% 100/130 [00:52<00:15, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07327 0.05756 0 520 640: 78% 101/130 [00:52<00:14, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0732 0.05751 0 418 640: 78% 102/130 [00:53<00:14, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07313 0.05745 0 360 640: 79% 103/130 [00:53<00:13, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07313 0.0574 0 452 640: 80% 104/130 [00:54<00:13, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07314 0.05735 0 380 640: 81% 105/130 [00:54<00:12, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07315 0.05722 0 357 640: 82% 106/130 [00:55<00:12, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07317 0.05715 0 422 640: 82% 107/130 [00:55<00:11, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0731 0.05701 0 317 640: 83% 108/130 [00:56<00:11, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07312 0.05701 0 489 640: 84% 109/130 [00:56<00:10, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07312 0.05701 0 431 640: 85% 110/130 [00:57<00:10, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07309 0.05695 0 412 640: 85% 111/130 [00:57<00:09, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07298 0.05689 0 392 640: 86% 112/130 [00:58<00:09, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07293 0.0569 0 457 640: 87% 113/130 [00:58<00:08, 1.98it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07296 0.05691 0 416 640: 88% 114/130 [00:59<00:08, 1.92it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07298 0.05696 0 536 640: 88% 115/130 [00:59<00:07, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07296 0.0569 0 405 640: 89% 116/130 [01:00<00:07, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07297 0.05682 0 354 640: 90% 117/130 [01:01<00:07, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07287 0.05676 0 394 640: 91% 118/130 [01:01<00:06, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07289 0.05679 0 380 640: 92% 119/130 [01:02<00:06, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07296 0.057 0 589 640: 92% 120/130 [01:02<00:05, 1.86it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0729 0.05695 0 307 640: 93% 121/130 [01:03<00:04, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07297 0.05707 0 511 640: 94% 122/130 [01:03<00:04, 1.90it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07299 0.0571 0 546 640: 95% 123/130 [01:04<00:03, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07301 0.05707 0 430 640: 95% 124/130 [01:04<00:03, 1.94it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07299 0.05699 0 391 640: 96% 125/130 [01:05<00:02, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07302 0.05695 0 437 640: 97% 126/130 [01:05<00:02, 1.93it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07306 0.0571 0 644 640: 98% 127/130 [01:06<00:01, 1.95it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07307 0.05719 0 564 640: 98% 128/130 [01:06<00:01, 1.96it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.0731 0.05718 0 434 640: 99% 129/130 [01:07<00:00, 1.97it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.14G 0.07308 0.05711 0 292 640: 100% 130/130 [01:07<00:00, 1.92it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.53it/s]\n",
+ " all 168 2530 0.965 0.939 0.986 0.732\n",
+ "\n",
+ "10 epochs completed in 0.197 hours.\n",
+ "Optimizer stripped from runs/train/exp8/weights/last.pt, 14.5MB\n",
+ "Optimizer stripped from runs/train/exp8/weights/best.pt, 14.5MB\n",
+ "\n",
+ "Validating runs/train/exp8/weights/best.pt...\n",
+ "Traceback (most recent call last):\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 647, in \n",
+ " main(opt)\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 536, in main\n",
+ " train(opt.hyp, opt, device, callbacks)\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 423, in train\n",
+ " model=attempt_load(f, device).half(),\n",
+ " ^^^^^^^^^^^^^^^^^^^^^^^\n",
+ " File \"/content/SMN-YOLOv5s/models/experimental.py\", line 79, in attempt_load\n",
+ " ckpt = torch.load(attempt_download(w), map_location='cpu') # load\n",
+ " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
+ " File \"/usr/local/lib/python3.12/dist-packages/torch/serialization.py\", line 1529, in load\n",
+ " raise pickle.UnpicklingError(_get_wo_message(str(e))) from None\n",
+ "_pickle.UnpicklingError: Weights only load failed. This file can still be loaded, to do so you have two options, \u001b[1mdo those steps only if you trust the source of the checkpoint\u001b[0m. \n",
+ "\t(1) In PyTorch 2.6, we changed the default value of the `weights_only` argument in `torch.load` from `False` to `True`. Re-running `torch.load` with `weights_only` set to `False` will likely succeed, but it can result in arbitrary code execution. Do it only if you got the file from a trusted source.\n",
+ "\t(2) Alternatively, to load with `weights_only=True` please check the recommended steps in the following error message.\n",
+ "\tWeightsUnpickler error: Unsupported global: GLOBAL models.yolo.DetectionModel was not an allowed global by default. Please use `torch.serialization.add_safe_globals([models.yolo.DetectionModel])` or the `torch.serialization.safe_globals([models.yolo.DetectionModel])` context manager to allowlist this global if you trust this class/function.\n",
+ "\n",
+ "Check the documentation of torch.load to learn more about types accepted by default with weights_only https://pytorch.org/docs/stable/generated/torch.load.html.\n"
+ ]
+ }
+ ],
+ "source": [
+ "!python train.py --img 640 --batch 16 --epochs 10 --data {dataset.location}/data.yaml --weights '' --cfg /content/SMN-YOLOv5s/models/yolov5s-cbam.yaml --cache"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "uJJqFZpDfJ27",
+ "outputId": "4d7b5074-62fc-48e6-f442-7b5145556394"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[34m\u001b[1mwandb\u001b[0m: WARNING ⚠️ wandb is deprecated and will be removed in a future release. See supported integrations at https://github.com/ultralytics/yolov5#integrations.\n",
+ "2026-02-15 09:23:11.834528: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:467] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n",
+ "WARNING: All log messages before absl::InitializeLog() is called are written to STDERR\n",
+ "E0000 00:00:1771147391.855926 12413 cuda_dnn.cc:8579] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\n",
+ "E0000 00:00:1771147391.862975 12413 cuda_blas.cc:1407] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\n",
+ "W0000 00:00:1771147391.880929 12413 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771147391.880954 12413 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771147391.880960 12413 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "W0000 00:00:1771147391.880964 12413 computation_placer.cc:177] computation placer already registered. Please check linkage and avoid linking the same target more than once.\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (1) Create a W&B account\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (2) Use an existing W&B account\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: (3) Don't visualize my results\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: Enter your choice: (30 second timeout) \n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: \u001b[33mWARNING\u001b[0m W&B disabled due to login timeout.\n",
+ "\u001b[34m\u001b[1mwandb\u001b[0m: W&B API key is configured. Use \u001b[1m`wandb login --relogin`\u001b[0m to force relogin\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mweights=, cfg=/content/SMN-YOLOv5s/models/yolov5s-c3se.yaml, data=/content/SMN-YOLOv5s/potato-counting-1/data.yaml, hyp=data/hyps/hyp.scratch-low.yaml, epochs=10, batch_size=16, imgsz=640, rect=False, resume=False, nosave=False, noval=False, noautoanchor=False, noplots=False, evolve=None, bucket=, cache=ram, image_weights=False, device=0, multi_scale=False, single_cls=False, optimizer=SGD, sync_bn=False, workers=8, project=runs/train, name=exp, exist_ok=False, quad=False, cos_lr=False, label_smoothing=0.0, patience=100, freeze=[0], save_period=-1, seed=0, local_rank=-1, entity=None, upload_dataset=False, bbox_interval=-1, artifact_alias=latest\n",
+ "\u001b[34m\u001b[1mgithub: \u001b[0m⚠️ YOLOv5 is out of date by 2944 commits. Use 'git pull ultralytics master' or 'git clone https://github.com/ultralytics/yolov5' to update.\n",
+ "YOLOv5 🚀 704b81b1 Python-3.12.12 torch-2.9.0+cu128 CUDA:0 (Tesla T4, 14913MiB)\n",
+ "\n",
+ "\u001b[34m\u001b[1mhyperparameters: \u001b[0mlr0=0.01, lrf=0.01, momentum=0.937, weight_decay=0.0005, warmup_epochs=3.0, warmup_momentum=0.8, warmup_bias_lr=0.1, box=0.05, cls=0.5, cls_pw=1.0, obj=1.0, obj_pw=1.0, iou_t=0.2, anchor_t=4.0, fl_gamma=0.0, hsv_h=0.015, hsv_s=0.7, hsv_v=0.4, degrees=0.0, translate=0.1, scale=0.5, shear=0.0, perspective=0.0, flipud=0.0, fliplr=0.5, mosaic=1.0, mixup=0.0, copy_paste=0.0\n",
+ "\u001b[34m\u001b[1mComet: \u001b[0mrun 'pip install comet_ml' to automatically track and visualize YOLOv5 🚀 runs in Comet\n",
+ "\u001b[34m\u001b[1mTensorBoard: \u001b[0mStart with 'tensorboard --logdir runs/train', view at http://localhost:6006/\n",
+ "\n",
+ " from n params module arguments \n",
+ " 0 -1 1 3616 models.common.Conv [3, 32, 6, 2, 2] \n",
+ " 1 -1 1 18752 models.common.Conv [32, 64, 3, 2] \n",
+ " 2 -1 1 14320 models.common.C3SE [64, 64] \n",
+ " 3 -1 1 74368 models.common.Conv [64, 128, 3, 2] \n",
+ " 4 -1 2 111040 models.common.C3SE [128, 128] \n",
+ " 5 -1 1 296192 models.common.Conv [128, 256, 3, 2] \n",
+ " 6 -1 3 655680 models.common.C3SE [256, 256] \n",
+ " 7 -1 1 1182208 models.common.Conv [256, 512, 3, 2] \n",
+ " 8 -1 1 867200 models.common.C3SE [512, 512] \n",
+ " 9 -1 1 659200 models.common.SPPF [512, 512, 5] \n",
+ " 10 -1 1 132352 models.common.Conv [512, 256, 1, 1] \n",
+ " 11 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] \n",
+ " 12 [-1, 6] 1 0 models.common.Concat [1] \n",
+ " 13 -1 1 364288 models.common.C3 [512, 256, 1, False] \n",
+ " 14 -1 1 33408 models.common.Conv [256, 128, 1, 1] \n",
+ " 15 -1 1 0 torch.nn.modules.upsampling.Upsample [None, 2, 'nearest'] \n",
+ " 16 [-1, 4] 1 0 models.common.Concat [1] \n",
+ " 17 -1 1 92032 models.common.C3 [256, 128, 1, False] \n",
+ " 18 -1 1 148096 models.common.Conv [128, 128, 3, 2] \n",
+ " 19 [-1, 14] 1 0 models.common.Concat [1] \n",
+ " 20 -1 1 298752 models.common.C3 [256, 256, 1, False] \n",
+ " 21 -1 1 591104 models.common.Conv [256, 256, 3, 2] \n",
+ " 22 [-1, 10] 1 0 models.common.Concat [1] \n",
+ " 23 -1 1 1187328 models.common.C3 [512, 512, 1, False] \n",
+ " 24 [17, 20, 23] 1 16182 models.yolo.Detect [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [128, 256, 512]]\n",
+ "YOLOv5s-c3se summary: 349 layers, 6746118 parameters, 6746118 gradients, 15.4 GFLOPs\n",
+ "\n",
+ "/content/SMN-YOLOv5s/models/common.py:719: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with amp.autocast(autocast):\n",
+ "/content/SMN-YOLOv5s/models/common.py:719: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with amp.autocast(autocast):\n",
+ "\u001b[34m\u001b[1mAMP: \u001b[0mchecks passed ✅\n",
+ "\u001b[34m\u001b[1moptimizer:\u001b[0m SGD(lr=0.01) with parameter groups 66 weight(decay=0.0), 281 weight(decay=0.0005), 69 bias\n",
+ "\u001b[34m\u001b[1malbumentations: \u001b[0mBlur(p=0.01, blur_limit=(3, 7)), MedianBlur(p=0.01, blur_limit=(3, 7)), ToGray(p=0.01), CLAHE(p=0.01, clip_limit=(1, 4.0), tile_grid_size=(8, 8))\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mScanning /content/SMN-YOLOv5s/potato-counting-1/train/labels.cache... 2077 images, 78 backgrounds, 0 corrupt: 100% 2077/2077 [00:00, ?it/s]\n",
+ "\u001b[34m\u001b[1mtrain: \u001b[0mCaching images (1.3GB ram): 100% 2077/2077 [00:23<00:00, 88.43it/s]\n",
+ "\u001b[34m\u001b[1mval: \u001b[0mScanning /content/SMN-YOLOv5s/potato-counting-1/valid/labels.cache... 168 images, 0 backgrounds, 0 corrupt: 100% 168/168 [00:00, ?it/s]\n",
+ "\u001b[34m\u001b[1mval: \u001b[0mCaching images (0.1GB ram): 100% 168/168 [00:02<00:00, 59.46it/s]\n",
+ "\n",
+ "\u001b[34m\u001b[1mAutoAnchor: \u001b[0m5.00 anchors/target, 1.000 Best Possible Recall (BPR). Current anchors are a good fit to dataset ✅\n",
+ "Plotting labels to runs/train/exp9/labels.jpg... \n",
+ "/content/SMN-YOLOv5s/train.py:261: FutureWarning: `torch.cuda.amp.GradScaler(args...)` is deprecated. Please use `torch.amp.GradScaler('cuda', args...)` instead.\n",
+ " scaler = torch.cuda.amp.GradScaler(enabled=amp)\n",
+ "Image sizes 640 train, 640 val\n",
+ "Using 2 dataloader workers\n",
+ "Logging results to \u001b[1mruns/train/exp9\u001b[0m\n",
+ "Starting training for 10 epochs...\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.28G 0.2048 0.2886 0 561 640: 1% 1/130 [00:03<07:59, 3.72s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.4G 0.2049 0.2583 0 410 640: 2% 2/130 [00:04<04:04, 1.91s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2047 0.2383 0 365 640: 2% 3/130 [00:05<02:51, 1.35s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2035 0.2403 0 441 640: 3% 4/130 [00:05<02:16, 1.08s/it]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2035 0.2391 0 411 640: 4% 5/130 [00:06<01:52, 1.11it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2039 0.2464 0 485 640: 5% 6/130 [00:06<01:37, 1.27it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2038 0.2442 0 396 640: 5% 7/130 [00:07<01:27, 1.40it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2036 0.2461 0 429 640: 6% 8/130 [00:07<01:21, 1.50it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2034 0.2438 0 426 640: 7% 9/130 [00:08<01:17, 1.55it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.203 0.2429 0 366 640: 8% 10/130 [00:09<01:16, 1.56it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2026 0.2445 0 430 640: 8% 11/130 [00:09<01:15, 1.58it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2027 0.2461 0 578 640: 9% 12/130 [00:10<01:13, 1.60it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2028 0.25 0 612 640: 10% 13/130 [00:11<01:12, 1.61it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2027 0.2499 0 463 640: 11% 14/130 [00:11<01:10, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2027 0.2501 0 448 640: 12% 15/130 [00:12<01:09, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2024 0.2485 0 346 640: 12% 16/130 [00:12<01:07, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2022 0.2495 0 473 640: 13% 17/130 [00:13<01:06, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2023 0.2532 0 584 640: 14% 18/130 [00:13<01:04, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.202 0.2547 0 490 640: 15% 19/130 [00:14<01:03, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2017 0.2533 0 368 640: 15% 20/130 [00:15<01:03, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2018 0.252 0 429 640: 16% 21/130 [00:15<01:02, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2017 0.2507 0 361 640: 17% 22/130 [00:16<01:01, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2017 0.2506 0 448 640: 18% 23/130 [00:16<01:00, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2016 0.2497 0 495 640: 18% 24/130 [00:17<01:00, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2015 0.2478 0 354 640: 19% 25/130 [00:17<00:59, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2014 0.2468 0 390 640: 20% 26/130 [00:18<00:59, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2014 0.2474 0 542 640: 21% 27/130 [00:19<00:58, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2013 0.2468 0 436 640: 22% 28/130 [00:19<00:57, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2012 0.2493 0 586 640: 22% 29/130 [00:20<00:57, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.201 0.2493 0 514 640: 23% 30/130 [00:20<00:56, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2008 0.2483 0 360 640: 24% 31/130 [00:21<00:56, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2008 0.2494 0 599 640: 25% 32/130 [00:21<00:56, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2006 0.2508 0 549 640: 25% 33/130 [00:22<00:58, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2005 0.252 0 514 640: 26% 34/130 [00:23<00:58, 1.63it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2003 0.252 0 437 640: 27% 35/130 [00:23<00:58, 1.62it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2001 0.2528 0 562 640: 28% 36/130 [00:24<00:57, 1.63it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.2 0.253 0 464 640: 28% 37/130 [00:25<00:55, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1999 0.2517 0 351 640: 29% 38/130 [00:25<00:54, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1998 0.2517 0 473 640: 30% 39/130 [00:26<00:53, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1996 0.2519 0 445 640: 31% 40/130 [00:26<00:52, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1996 0.2512 0 425 640: 32% 41/130 [00:27<00:51, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1995 0.2507 0 484 640: 32% 42/130 [00:27<00:50, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1994 0.2509 0 406 640: 33% 43/130 [00:28<00:50, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1993 0.2498 0 376 640: 34% 44/130 [00:29<00:49, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1992 0.2486 0 356 640: 35% 45/130 [00:29<00:48, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1991 0.2491 0 485 640: 35% 46/130 [00:30<00:47, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1989 0.2495 0 468 640: 36% 47/130 [00:30<00:47, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1991 0.2491 0 535 640: 37% 48/130 [00:31<00:46, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.199 0.249 0 470 640: 38% 49/130 [00:31<00:46, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1988 0.249 0 438 640: 38% 50/130 [00:32<00:45, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1987 0.2497 0 438 640: 39% 51/130 [00:32<00:45, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1984 0.2486 0 394 640: 40% 52/130 [00:33<00:44, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1983 0.2489 0 428 640: 41% 53/130 [00:34<00:44, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1983 0.248 0 382 640: 42% 54/130 [00:34<00:43, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1981 0.2479 0 469 640: 42% 55/130 [00:35<00:45, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1981 0.2478 0 505 640: 43% 56/130 [00:36<00:46, 1.60it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1979 0.2489 0 553 640: 44% 57/130 [00:36<00:46, 1.59it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1978 0.249 0 484 640: 45% 58/130 [00:37<00:45, 1.59it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1977 0.2488 0 477 640: 45% 59/130 [00:37<00:43, 1.64it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1976 0.249 0 484 640: 46% 60/130 [00:38<00:41, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1974 0.2493 0 561 640: 47% 61/130 [00:39<00:40, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1973 0.2491 0 441 640: 48% 62/130 [00:39<00:39, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1973 0.2486 0 410 640: 48% 63/130 [00:40<00:38, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1972 0.2483 0 432 640: 49% 64/130 [00:40<00:38, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1971 0.2483 0 486 640: 50% 65/130 [00:41<00:37, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.197 0.2479 0 411 640: 51% 66/130 [00:41<00:36, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.197 0.2479 0 498 640: 52% 67/130 [00:42<00:36, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1968 0.2477 0 438 640: 52% 68/130 [00:43<00:35, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1967 0.2481 0 534 640: 53% 69/130 [00:43<00:35, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1967 0.2482 0 563 640: 54% 70/130 [00:44<00:33, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1965 0.2477 0 495 640: 55% 71/130 [00:44<00:33, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1964 0.2472 0 388 640: 55% 72/130 [00:45<00:32, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1963 0.2462 0 364 640: 56% 73/130 [00:45<00:32, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1962 0.2456 0 387 640: 57% 74/130 [00:46<00:31, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.196 0.2461 0 555 640: 58% 75/130 [00:46<00:31, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1959 0.2457 0 336 640: 58% 76/130 [00:47<00:30, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1958 0.2455 0 465 640: 59% 77/130 [00:48<00:30, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1957 0.2451 0 388 640: 60% 78/130 [00:48<00:30, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1956 0.2448 0 442 640: 61% 79/130 [00:49<00:30, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1956 0.245 0 606 640: 62% 80/130 [00:49<00:29, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1955 0.2447 0 430 640: 62% 81/130 [00:50<00:28, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1955 0.2449 0 575 640: 63% 82/130 [00:51<00:27, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1954 0.2448 0 465 640: 64% 83/130 [00:51<00:27, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1953 0.2444 0 389 640: 65% 84/130 [00:52<00:26, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1952 0.2443 0 450 640: 65% 85/130 [00:52<00:25, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1952 0.2443 0 511 640: 66% 86/130 [00:53<00:24, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1951 0.2447 0 570 640: 67% 87/130 [00:53<00:24, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.195 0.2443 0 433 640: 68% 88/130 [00:54<00:23, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.195 0.2443 0 477 640: 68% 89/130 [00:55<00:23, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1949 0.2444 0 510 640: 69% 90/130 [00:55<00:22, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1949 0.2444 0 491 640: 70% 91/130 [00:56<00:22, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1947 0.2447 0 498 640: 71% 92/130 [00:56<00:21, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1947 0.2441 0 445 640: 72% 93/130 [00:57<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1947 0.2442 0 526 640: 72% 94/130 [00:57<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1947 0.2434 0 331 640: 73% 95/130 [00:58<00:19, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1946 0.2431 0 444 640: 74% 96/130 [00:59<00:19, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1946 0.2426 0 408 640: 75% 97/130 [00:59<00:18, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1946 0.2424 0 464 640: 75% 98/130 [01:00<00:17, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1946 0.2423 0 601 640: 76% 99/130 [01:00<00:17, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1946 0.2418 0 327 640: 77% 100/130 [01:01<00:17, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1945 0.2415 0 413 640: 78% 101/130 [01:01<00:17, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1945 0.241 0 376 640: 78% 102/130 [01:02<00:16, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1944 0.2411 0 550 640: 79% 103/130 [01:03<00:16, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1944 0.2414 0 540 640: 80% 104/130 [01:03<00:15, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1943 0.2413 0 466 640: 81% 105/130 [01:04<00:14, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1942 0.2412 0 439 640: 82% 106/130 [01:04<00:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1942 0.2407 0 375 640: 82% 107/130 [01:05<00:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1941 0.2404 0 425 640: 83% 108/130 [01:06<00:12, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.194 0.2403 0 425 640: 84% 109/130 [01:06<00:12, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.194 0.2404 0 574 640: 85% 110/130 [01:07<00:11, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1938 0.2403 0 398 640: 85% 111/130 [01:07<00:10, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1937 0.2402 0 425 640: 86% 112/130 [01:08<00:10, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1936 0.2401 0 407 640: 87% 113/130 [01:08<00:09, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1936 0.2401 0 466 640: 88% 114/130 [01:09<00:08, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1935 0.2401 0 498 640: 88% 115/130 [01:09<00:08, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2401 0 527 640: 89% 116/130 [01:10<00:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2397 0 425 640: 90% 117/130 [01:11<00:07, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2395 0 443 640: 91% 118/130 [01:11<00:06, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2389 0 388 640: 92% 119/130 [01:12<00:06, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2386 0 462 640: 92% 120/130 [01:12<00:05, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1934 0.2384 0 426 640: 93% 121/130 [01:13<00:05, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1933 0.2378 0 419 640: 94% 122/130 [01:13<00:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1933 0.2375 0 491 640: 95% 123/130 [01:14<00:04, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1932 0.2372 0 407 640: 95% 124/130 [01:15<00:03, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1932 0.2366 0 326 640: 96% 125/130 [01:15<00:03, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1932 0.2364 0 409 640: 97% 126/130 [01:16<00:02, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1931 0.2362 0 418 640: 98% 127/130 [01:16<00:01, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1931 0.2361 0 486 640: 98% 128/130 [01:17<00:01, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.193 0.2359 0 508 640: 99% 129/130 [01:18<00:00, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 0/9 7.61G 0.1929 0.2362 0 425 640: 100% 130/130 [01:18<00:00, 1.65it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:04<00:00, 1.45it/s]\n",
+ " all 168 2530 0.000317 0.00632 0.00016 3.5e-05\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1884 0.2168 0 513 640: 1% 1/130 [00:00<01:13, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1873 0.2125 0 446 640: 2% 2/130 [00:01<01:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1884 0.215 0 542 640: 2% 3/130 [00:01<01:12, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1876 0.2059 0 304 640: 3% 4/130 [00:02<01:10, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1866 0.2093 0 466 640: 4% 5/130 [00:02<01:10, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.61G 0.1858 0.2089 0 435 640: 5% 6/130 [00:03<01:09, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1855 0.207 0 440 640: 5% 7/130 [00:03<01:10, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.2086 0 460 640: 6% 8/130 [00:04<01:10, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1848 0.2091 0 361 640: 7% 9/130 [00:05<01:13, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.2092 0 447 640: 8% 10/130 [00:05<01:11, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.2116 0 536 640: 8% 11/130 [00:06<01:11, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1848 0.2102 0 409 640: 9% 12/130 [00:06<01:09, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1848 0.2105 0 530 640: 10% 13/130 [00:07<01:08, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.2097 0 489 640: 11% 14/130 [00:08<01:06, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1854 0.2085 0 464 640: 12% 15/130 [00:08<01:06, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1857 0.2052 0 385 640: 12% 16/130 [00:09<01:04, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1856 0.207 0 491 640: 13% 17/130 [00:09<01:04, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1855 0.207 0 450 640: 14% 18/130 [00:10<01:03, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.2055 0 367 640: 15% 19/130 [00:10<01:02, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.2056 0 501 640: 15% 20/130 [00:11<01:02, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1855 0.207 0 574 640: 16% 21/130 [00:12<01:01, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.2074 0 479 640: 17% 22/130 [00:12<01:00, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.2059 0 304 640: 18% 23/130 [00:13<01:00, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1849 0.2047 0 369 640: 18% 24/130 [00:13<00:59, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.2025 0 384 640: 19% 25/130 [00:14<00:58, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.2002 0 289 640: 20% 26/130 [00:14<00:58, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.1984 0 322 640: 21% 27/130 [00:15<00:58, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.1983 0 459 640: 22% 28/130 [00:15<00:57, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.197 0 365 640: 22% 29/130 [00:16<00:57, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.1965 0 430 640: 23% 30/130 [00:17<00:56, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.1957 0 488 640: 24% 31/130 [00:17<00:58, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1854 0.1946 0 447 640: 25% 32/130 [00:18<00:57, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1854 0.1947 0 493 640: 25% 33/130 [00:18<00:58, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1854 0.1944 0 435 640: 26% 34/130 [00:19<00:56, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1854 0.1942 0 466 640: 27% 35/130 [00:20<00:56, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.1943 0 434 640: 28% 36/130 [00:20<00:54, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.1935 0 367 640: 28% 37/130 [00:21<00:53, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1853 0.1926 0 465 640: 29% 38/130 [00:21<00:52, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1852 0.1926 0 551 640: 30% 39/130 [00:22<00:52, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1851 0.1924 0 466 640: 31% 40/130 [00:22<00:51, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1851 0.1921 0 460 640: 32% 41/130 [00:23<00:51, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1851 0.1924 0 591 640: 32% 42/130 [00:24<00:49, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.1924 0 486 640: 33% 43/130 [00:24<00:49, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.185 0.1925 0 514 640: 34% 44/130 [00:25<00:48, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1847 0.1925 0 437 640: 35% 45/130 [00:25<00:48, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1847 0.1923 0 493 640: 35% 46/130 [00:26<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1847 0.1922 0 576 640: 36% 47/130 [00:26<00:47, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1846 0.1918 0 408 640: 37% 48/130 [00:27<00:45, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1845 0.1916 0 470 640: 38% 49/130 [00:28<00:45, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1845 0.1918 0 676 640: 38% 50/130 [00:28<00:44, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1844 0.1921 0 539 640: 39% 51/130 [00:29<00:44, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1842 0.192 0 562 640: 40% 52/130 [00:29<00:43, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1841 0.1917 0 504 640: 41% 53/130 [00:30<00:43, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1841 0.1913 0 489 640: 42% 54/130 [00:30<00:43, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.184 0.1911 0 564 640: 42% 55/130 [00:31<00:44, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1839 0.19 0 300 640: 43% 56/130 [00:32<00:44, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1837 0.1895 0 403 640: 44% 57/130 [00:32<00:44, 1.64it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1835 0.1885 0 302 640: 45% 58/130 [00:33<00:43, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1832 0.1882 0 437 640: 45% 59/130 [00:33<00:42, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.183 0.1882 0 471 640: 46% 60/130 [00:34<00:40, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1827 0.1876 0 335 640: 47% 61/130 [00:35<00:39, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1826 0.1868 0 414 640: 48% 62/130 [00:35<00:38, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1824 0.1867 0 586 640: 48% 63/130 [00:36<00:38, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1822 0.1861 0 481 640: 49% 64/130 [00:36<00:37, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1819 0.1857 0 378 640: 50% 65/130 [00:37<00:36, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1818 0.1852 0 467 640: 51% 66/130 [00:37<00:35, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1816 0.1848 0 491 640: 52% 67/130 [00:38<00:35, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1814 0.1843 0 439 640: 52% 68/130 [00:38<00:34, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1812 0.1837 0 432 640: 53% 69/130 [00:39<00:33, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1809 0.1836 0 515 640: 54% 70/130 [00:40<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1807 0.1828 0 291 640: 55% 71/130 [00:40<00:33, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1804 0.1824 0 408 640: 55% 72/130 [00:41<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1802 0.1823 0 458 640: 56% 73/130 [00:41<00:31, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.18 0.1821 0 520 640: 57% 74/130 [00:42<00:31, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1798 0.1817 0 414 640: 58% 75/130 [00:42<00:30, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1795 0.1811 0 319 640: 58% 76/130 [00:43<00:29, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1793 0.1806 0 372 640: 59% 77/130 [00:44<00:31, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.179 0.1801 0 367 640: 60% 78/130 [00:44<00:30, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1788 0.1798 0 578 640: 61% 79/130 [00:45<00:29, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1786 0.1795 0 436 640: 62% 80/130 [00:45<00:29, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1783 0.1795 0 566 640: 62% 81/130 [00:46<00:28, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1781 0.1791 0 412 640: 63% 82/130 [00:46<00:27, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1779 0.1788 0 469 640: 64% 83/130 [00:47<00:27, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1776 0.1782 0 367 640: 65% 84/130 [00:48<00:26, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1774 0.1781 0 517 640: 65% 85/130 [00:48<00:25, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1772 0.1777 0 506 640: 66% 86/130 [00:49<00:24, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1769 0.1776 0 483 640: 67% 87/130 [00:49<00:24, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1768 0.1772 0 514 640: 68% 88/130 [00:50<00:23, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1766 0.1768 0 470 640: 68% 89/130 [00:50<00:23, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1765 0.1764 0 509 640: 69% 90/130 [00:51<00:22, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1763 0.176 0 470 640: 70% 91/130 [00:51<00:21, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1761 0.1755 0 411 640: 71% 92/130 [00:52<00:21, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1759 0.175 0 379 640: 72% 93/130 [00:53<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1757 0.1746 0 427 640: 72% 94/130 [00:53<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1755 0.1743 0 409 640: 73% 95/130 [00:54<00:19, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1753 0.1742 0 631 640: 74% 96/130 [00:54<00:19, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1751 0.1738 0 429 640: 75% 97/130 [00:55<00:18, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.175 0.1734 0 461 640: 75% 98/130 [00:55<00:18, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1748 0.1732 0 557 640: 76% 99/130 [00:56<00:17, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1746 0.1732 0 511 640: 77% 100/130 [00:57<00:16, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1744 0.173 0 537 640: 78% 101/130 [00:57<00:17, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1742 0.1727 0 497 640: 78% 102/130 [00:58<00:16, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.174 0.1724 0 503 640: 79% 103/130 [00:58<00:15, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1738 0.1722 0 432 640: 80% 104/130 [00:59<00:15, 1.64it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1736 0.1717 0 385 640: 81% 105/130 [01:00<00:14, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1735 0.1715 0 508 640: 82% 106/130 [01:00<00:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1733 0.1712 0 438 640: 82% 107/130 [01:01<00:13, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1731 0.1708 0 420 640: 83% 108/130 [01:01<00:12, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1729 0.1707 0 534 640: 84% 109/130 [01:02<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1728 0.1703 0 445 640: 85% 110/130 [01:02<00:11, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1725 0.1702 0 523 640: 85% 111/130 [01:03<00:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1723 0.1699 0 409 640: 86% 112/130 [01:03<00:10, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1722 0.1696 0 471 640: 87% 113/130 [01:04<00:09, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1719 0.1691 0 359 640: 88% 114/130 [01:05<00:08, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1718 0.1688 0 492 640: 88% 115/130 [01:05<00:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1716 0.1683 0 398 640: 89% 116/130 [01:06<00:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1714 0.1681 0 481 640: 90% 117/130 [01:06<00:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1713 0.1678 0 450 640: 91% 118/130 [01:07<00:06, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1711 0.1677 0 509 640: 92% 119/130 [01:07<00:06, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1709 0.1676 0 522 640: 92% 120/130 [01:08<00:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1708 0.1675 0 498 640: 93% 121/130 [01:09<00:05, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1706 0.1673 0 428 640: 94% 122/130 [01:09<00:04, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1704 0.1671 0 483 640: 95% 123/130 [01:10<00:03, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1703 0.1668 0 575 640: 95% 124/130 [01:10<00:03, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1702 0.1665 0 453 640: 96% 125/130 [01:11<00:03, 1.63it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.17 0.1662 0 440 640: 97% 126/130 [01:12<00:02, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1698 0.1659 0 431 640: 98% 127/130 [01:12<00:01, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1696 0.1657 0 415 640: 98% 128/130 [01:13<00:01, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1695 0.1656 0 619 640: 99% 129/130 [01:13<00:00, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 1/9 7.82G 0.1694 0.1653 0 404 640: 100% 130/130 [01:14<00:00, 1.75it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:02<00:00, 2.63it/s]\n",
+ " all 168 2530 0.126 0.334 0.0887 0.0199\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1489 0.1363 0 489 640: 1% 1/130 [00:00<01:14, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1441 0.1333 0 439 640: 2% 2/130 [00:01<01:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1417 0.1321 0 450 640: 2% 3/130 [00:01<01:10, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1414 0.1219 0 297 640: 3% 4/130 [00:02<01:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1432 0.123 0 519 640: 4% 5/130 [00:02<01:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1447 0.126 0 532 640: 5% 6/130 [00:03<01:08, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1463 0.1238 0 402 640: 5% 7/130 [00:03<01:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1468 0.1248 0 429 640: 6% 8/130 [00:04<01:07, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.146 0.1244 0 412 640: 7% 9/130 [00:05<01:07, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1454 0.1244 0 399 640: 8% 10/130 [00:05<01:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1459 0.1232 0 447 640: 8% 11/130 [00:06<01:07, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1456 0.1234 0 420 640: 9% 12/130 [00:06<01:07, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1454 0.1243 0 523 640: 10% 13/130 [00:07<01:07, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1454 0.1251 0 525 640: 11% 14/130 [00:07<01:07, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1453 0.1254 0 497 640: 12% 15/130 [00:08<01:06, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1451 0.1254 0 446 640: 12% 16/130 [00:09<01:07, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1444 0.1245 0 280 640: 13% 17/130 [00:09<01:05, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1438 0.1238 0 387 640: 14% 18/130 [00:10<01:03, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1437 0.1232 0 430 640: 15% 19/130 [00:10<01:03, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1435 0.1229 0 387 640: 15% 20/130 [00:11<01:01, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1432 0.1235 0 388 640: 16% 21/130 [00:11<01:00, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1431 0.1234 0 465 640: 17% 22/130 [00:12<01:00, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.143 0.1242 0 478 640: 18% 23/130 [00:12<00:59, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1429 0.1246 0 433 640: 18% 24/130 [00:13<00:59, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1429 0.1239 0 374 640: 19% 25/130 [00:14<00:59, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1428 0.1237 0 380 640: 20% 26/130 [00:14<00:58, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.143 0.1228 0 417 640: 21% 27/130 [00:15<00:57, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.143 0.1223 0 405 640: 22% 28/130 [00:15<00:57, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.143 0.1215 0 427 640: 22% 29/130 [00:16<00:56, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1429 0.1212 0 446 640: 23% 30/130 [00:16<00:55, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1428 0.121 0 477 640: 24% 31/130 [00:17<00:55, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1427 0.1213 0 444 640: 25% 32/130 [00:18<00:54, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1426 0.1208 0 337 640: 25% 33/130 [00:18<00:53, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1426 0.1206 0 456 640: 26% 34/130 [00:19<00:54, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1425 0.1207 0 438 640: 27% 35/130 [00:19<00:54, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1423 0.12 0 289 640: 28% 36/130 [00:20<00:54, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1423 0.1205 0 481 640: 28% 37/130 [00:21<00:55, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1422 0.1202 0 393 640: 29% 38/130 [00:21<00:54, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1422 0.1206 0 589 640: 30% 39/130 [00:22<00:53, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1422 0.1203 0 442 640: 31% 40/130 [00:22<00:53, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1421 0.1202 0 512 640: 32% 41/130 [00:23<00:51, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1419 0.1198 0 340 640: 32% 42/130 [00:23<00:49, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1418 0.1192 0 391 640: 33% 43/130 [00:24<00:49, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1418 0.1192 0 373 640: 34% 44/130 [00:24<00:48, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1419 0.1194 0 543 640: 35% 45/130 [00:25<00:47, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1419 0.1192 0 382 640: 35% 46/130 [00:26<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1418 0.1195 0 546 640: 36% 47/130 [00:26<00:46, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1417 0.1199 0 543 640: 37% 48/130 [00:27<00:45, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1415 0.1205 0 584 640: 38% 49/130 [00:27<00:45, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1414 0.1203 0 386 640: 38% 50/130 [00:28<00:44, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1411 0.1202 0 438 640: 39% 51/130 [00:28<00:43, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1409 0.1199 0 405 640: 40% 52/130 [00:29<00:44, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1408 0.1199 0 464 640: 41% 53/130 [00:29<00:43, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1407 0.1198 0 390 640: 42% 54/130 [00:30<00:42, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1406 0.1198 0 436 640: 42% 55/130 [00:31<00:42, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1404 0.1198 0 417 640: 43% 56/130 [00:31<00:41, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1404 0.1201 0 563 640: 44% 57/130 [00:32<00:40, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1403 0.1201 0 451 640: 45% 58/130 [00:32<00:40, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1402 0.1201 0 452 640: 45% 59/130 [00:33<00:40, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1402 0.12 0 476 640: 46% 60/130 [00:33<00:40, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1401 0.1195 0 307 640: 47% 61/130 [00:34<00:41, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1401 0.1198 0 575 640: 48% 62/130 [00:35<00:40, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1401 0.12 0 543 640: 48% 63/130 [00:35<00:39, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.14 0.1199 0 393 640: 49% 64/130 [00:36<00:38, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1398 0.12 0 457 640: 50% 65/130 [00:36<00:37, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1397 0.1202 0 551 640: 51% 66/130 [00:37<00:36, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1395 0.1202 0 459 640: 52% 67/130 [00:38<00:35, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1395 0.1203 0 606 640: 52% 68/130 [00:38<00:35, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1395 0.1202 0 494 640: 53% 69/130 [00:39<00:34, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1397 0.1202 0 510 640: 54% 70/130 [00:39<00:33, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1399 0.12 0 486 640: 55% 71/130 [00:40<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.14 0.1198 0 402 640: 55% 72/130 [00:40<00:32, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1398 0.1197 0 451 640: 56% 73/130 [00:41<00:31, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1396 0.1201 0 482 640: 57% 74/130 [00:41<00:30, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1394 0.1198 0 354 640: 58% 75/130 [00:42<00:30, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1392 0.1199 0 450 640: 58% 76/130 [00:43<00:30, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1392 0.1199 0 451 640: 59% 77/130 [00:43<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1393 0.1197 0 482 640: 60% 78/130 [00:44<00:28, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1392 0.1196 0 435 640: 61% 79/130 [00:44<00:28, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1392 0.1196 0 459 640: 62% 80/130 [00:45<00:28, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.139 0.1195 0 468 640: 62% 81/130 [00:45<00:27, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1389 0.1196 0 533 640: 63% 82/130 [00:46<00:27, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1388 0.1194 0 444 640: 64% 83/130 [00:46<00:27, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1387 0.1192 0 455 640: 65% 84/130 [00:47<00:28, 1.63it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1387 0.1196 0 493 640: 65% 85/130 [00:48<00:27, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1387 0.1195 0 466 640: 66% 86/130 [00:48<00:26, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1387 0.1195 0 478 640: 67% 87/130 [00:49<00:25, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1388 0.1198 0 660 640: 68% 88/130 [00:50<00:24, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1385 0.1194 0 320 640: 68% 89/130 [00:50<00:23, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1383 0.1194 0 416 640: 69% 90/130 [00:51<00:22, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1381 0.1191 0 399 640: 70% 91/130 [00:51<00:22, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1379 0.1191 0 467 640: 71% 92/130 [00:52<00:21, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1379 0.1189 0 321 640: 72% 93/130 [00:52<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.138 0.1187 0 503 640: 72% 94/130 [00:53<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1379 0.1187 0 484 640: 73% 95/130 [00:53<00:19, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.138 0.1184 0 343 640: 74% 96/130 [00:54<00:19, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1379 0.1186 0 555 640: 75% 97/130 [00:55<00:18, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1378 0.1184 0 369 640: 75% 98/130 [00:55<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1377 0.1185 0 535 640: 76% 99/130 [00:56<00:17, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1377 0.1182 0 385 640: 77% 100/130 [00:56<00:16, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1377 0.1181 0 501 640: 78% 101/130 [00:57<00:16, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1377 0.118 0 484 640: 78% 102/130 [00:57<00:15, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1376 0.1177 0 380 640: 79% 103/130 [00:58<00:14, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1376 0.1175 0 359 640: 80% 104/130 [00:58<00:14, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1374 0.1173 0 337 640: 81% 105/130 [00:59<00:14, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1374 0.1172 0 474 640: 82% 106/130 [01:00<00:13, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1374 0.1175 0 556 640: 82% 107/130 [01:00<00:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1373 0.1173 0 373 640: 83% 108/130 [01:01<00:12, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1372 0.1173 0 541 640: 84% 109/130 [01:01<00:12, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1371 0.1174 0 460 640: 85% 110/130 [01:02<00:11, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.137 0.1174 0 427 640: 85% 111/130 [01:03<00:11, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1369 0.1176 0 570 640: 86% 112/130 [01:03<00:10, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.137 0.1174 0 501 640: 87% 113/130 [01:04<00:09, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.137 0.1173 0 361 640: 88% 114/130 [01:04<00:09, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.137 0.1173 0 378 640: 88% 115/130 [01:05<00:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1369 0.1171 0 381 640: 89% 116/130 [01:05<00:07, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1368 0.1172 0 502 640: 90% 117/130 [01:06<00:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1368 0.117 0 390 640: 91% 118/130 [01:06<00:06, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1367 0.1169 0 344 640: 92% 119/130 [01:07<00:06, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1366 0.1169 0 454 640: 92% 120/130 [01:08<00:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1365 0.1169 0 483 640: 93% 121/130 [01:08<00:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1169 0 430 640: 94% 122/130 [01:09<00:04, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1363 0.1169 0 517 640: 95% 123/130 [01:09<00:03, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1363 0.1168 0 559 640: 95% 124/130 [01:10<00:03, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1363 0.1166 0 323 640: 96% 125/130 [01:10<00:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1164 0 435 640: 97% 126/130 [01:11<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1163 0 435 640: 98% 127/130 [01:11<00:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1163 0 488 640: 98% 128/130 [01:12<00:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1163 0 582 640: 99% 129/130 [01:13<00:00, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 2/9 7.82G 0.1364 0.1162 0 298 640: 100% 130/130 [01:13<00:00, 1.77it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:02<00:00, 2.78it/s]\n",
+ " all 168 2530 0.333 0.498 0.283 0.062\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1346 0.1296 0 534 640: 1% 1/130 [00:00<01:09, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1348 0.1284 0 557 640: 2% 2/130 [00:01<01:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1274 0.1199 0 430 640: 2% 3/130 [00:01<01:10, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.126 0.1145 0 382 640: 3% 4/130 [00:02<01:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1252 0.1109 0 443 640: 4% 5/130 [00:02<01:08, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1245 0.1089 0 469 640: 5% 6/130 [00:03<01:09, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1254 0.107 0 428 640: 5% 7/130 [00:03<01:09, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1266 0.1087 0 605 640: 6% 8/130 [00:04<01:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1266 0.1067 0 353 640: 7% 9/130 [00:04<01:07, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1274 0.1051 0 416 640: 8% 10/130 [00:05<01:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1276 0.104 0 410 640: 8% 11/130 [00:06<01:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1276 0.1029 0 395 640: 9% 12/130 [00:06<01:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1277 0.104 0 502 640: 10% 13/130 [00:07<01:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1281 0.1044 0 513 640: 11% 14/130 [00:07<01:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1276 0.1034 0 296 640: 12% 15/130 [00:08<01:04, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1268 0.1032 0 438 640: 12% 16/130 [00:08<01:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1262 0.1031 0 470 640: 13% 17/130 [00:09<01:04, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1258 0.1024 0 402 640: 14% 18/130 [00:10<01:05, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1264 0.1027 0 659 640: 15% 19/130 [00:10<01:04, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1266 0.1029 0 525 640: 15% 20/130 [00:11<01:02, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1265 0.1025 0 377 640: 16% 21/130 [00:11<01:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1263 0.1031 0 518 640: 17% 22/130 [00:12<01:01, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1266 0.1033 0 436 640: 18% 23/130 [00:12<01:00, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1264 0.1034 0 425 640: 18% 24/130 [00:13<01:00, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1263 0.1034 0 532 640: 19% 25/130 [00:14<00:59, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1262 0.1031 0 435 640: 20% 26/130 [00:14<00:58, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1261 0.1032 0 506 640: 21% 27/130 [00:15<00:57, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1258 0.1039 0 531 640: 22% 28/130 [00:15<00:56, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1257 0.1036 0 487 640: 22% 29/130 [00:16<00:55, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1259 0.1048 0 570 640: 23% 30/130 [00:16<00:56, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1259 0.1051 0 581 640: 24% 31/130 [00:17<00:55, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.126 0.1057 0 609 640: 25% 32/130 [00:17<00:54, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1261 0.1059 0 557 640: 25% 33/130 [00:18<00:53, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1259 0.1057 0 495 640: 26% 34/130 [00:19<00:53, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.126 0.1059 0 628 640: 27% 35/130 [00:19<00:52, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.126 0.1057 0 514 640: 28% 36/130 [00:20<00:51, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1259 0.106 0 567 640: 28% 37/130 [00:20<00:51, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1258 0.1058 0 419 640: 29% 38/130 [00:21<00:51, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1257 0.1055 0 473 640: 30% 39/130 [00:21<00:50, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1256 0.1048 0 335 640: 31% 40/130 [00:22<00:49, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1253 0.1048 0 368 640: 32% 41/130 [00:22<00:50, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1252 0.1048 0 432 640: 32% 42/130 [00:23<00:51, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1251 0.1047 0 488 640: 33% 43/130 [00:24<00:51, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.125 0.1047 0 451 640: 34% 44/130 [00:24<00:51, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1249 0.1052 0 545 640: 35% 45/130 [00:25<00:50, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1246 0.1048 0 387 640: 35% 46/130 [00:25<00:49, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1246 0.1051 0 560 640: 36% 47/130 [00:26<00:47, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1244 0.1052 0 571 640: 37% 48/130 [00:27<00:46, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1243 0.1049 0 369 640: 38% 49/130 [00:27<00:45, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1242 0.1047 0 464 640: 38% 50/130 [00:28<00:45, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1241 0.1045 0 412 640: 39% 51/130 [00:28<00:44, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1241 0.1042 0 397 640: 40% 52/130 [00:29<00:43, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.124 0.1039 0 382 640: 41% 53/130 [00:29<00:42, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1239 0.1036 0 395 640: 42% 54/130 [00:30<00:42, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1238 0.1032 0 328 640: 42% 55/130 [00:30<00:41, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1237 0.1028 0 357 640: 43% 56/130 [00:31<00:41, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1239 0.1028 0 542 640: 44% 57/130 [00:32<00:40, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1238 0.1026 0 369 640: 45% 58/130 [00:32<00:40, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1237 0.1021 0 375 640: 45% 59/130 [00:33<00:39, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1235 0.1022 0 550 640: 46% 60/130 [00:33<00:38, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1234 0.1019 0 429 640: 47% 61/130 [00:34<00:38, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1232 0.1018 0 492 640: 48% 62/130 [00:34<00:38, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1231 0.1017 0 437 640: 48% 63/130 [00:35<00:37, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1229 0.1013 0 353 640: 49% 64/130 [00:35<00:36, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1228 0.1011 0 322 640: 50% 65/130 [00:36<00:36, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1228 0.101 0 471 640: 51% 66/130 [00:37<00:37, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1227 0.1007 0 346 640: 52% 67/130 [00:37<00:37, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1226 0.1008 0 571 640: 52% 68/130 [00:38<00:36, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1226 0.101 0 565 640: 53% 69/130 [00:38<00:35, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1225 0.1009 0 445 640: 54% 70/130 [00:39<00:34, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1224 0.1007 0 424 640: 55% 71/130 [00:40<00:33, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1223 0.1009 0 484 640: 55% 72/130 [00:40<00:32, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1222 0.1008 0 463 640: 56% 73/130 [00:41<00:31, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1222 0.1008 0 483 640: 57% 74/130 [00:41<00:31, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.122 0.1006 0 430 640: 58% 75/130 [00:42<00:30, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1219 0.1005 0 419 640: 58% 76/130 [00:42<00:29, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1218 0.1004 0 439 640: 59% 77/130 [00:43<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1217 0.1003 0 397 640: 60% 78/130 [00:43<00:29, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1217 0.1003 0 522 640: 61% 79/130 [00:44<00:28, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1216 0.1006 0 517 640: 62% 80/130 [00:45<00:27, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1215 0.1005 0 446 640: 62% 81/130 [00:45<00:27, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1213 0.1004 0 360 640: 63% 82/130 [00:46<00:26, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1211 0.1004 0 433 640: 64% 83/130 [00:46<00:26, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1208 0.1002 0 279 640: 65% 84/130 [00:47<00:25, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1207 0.1002 0 431 640: 65% 85/130 [00:47<00:24, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1206 0.1002 0 499 640: 66% 86/130 [00:48<00:24, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1205 0.1001 0 459 640: 67% 87/130 [00:48<00:23, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1204 0.1 0 394 640: 68% 88/130 [00:49<00:23, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1203 0.1 0 471 640: 68% 89/130 [00:50<00:23, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1203 0.09977 0 355 640: 69% 90/130 [00:50<00:23, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1203 0.09966 0 417 640: 70% 91/130 [00:51<00:22, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1204 0.09937 0 324 640: 71% 92/130 [00:51<00:22, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1203 0.09916 0 382 640: 72% 93/130 [00:52<00:21, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1204 0.0989 0 367 640: 72% 94/130 [00:53<00:21, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1202 0.09878 0 409 640: 73% 95/130 [00:53<00:20, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1201 0.09882 0 479 640: 74% 96/130 [00:54<00:19, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.12 0.09891 0 584 640: 75% 97/130 [00:54<00:18, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.12 0.09915 0 483 640: 75% 98/130 [00:55<00:18, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1198 0.0989 0 280 640: 76% 99/130 [00:55<00:17, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1197 0.09893 0 491 640: 77% 100/130 [00:56<00:16, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1197 0.09899 0 455 640: 78% 101/130 [00:56<00:16, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1195 0.09896 0 400 640: 78% 102/130 [00:57<00:15, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1195 0.09875 0 366 640: 79% 103/130 [00:58<00:15, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1195 0.09863 0 457 640: 80% 104/130 [00:58<00:14, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1194 0.09867 0 435 640: 81% 105/130 [00:59<00:13, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1193 0.09882 0 501 640: 82% 106/130 [00:59<00:13, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1194 0.09861 0 386 640: 82% 107/130 [01:00<00:12, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1194 0.09863 0 537 640: 83% 108/130 [01:00<00:12, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1194 0.09854 0 409 640: 84% 109/130 [01:01<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1195 0.09836 0 386 640: 85% 110/130 [01:01<00:11, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1194 0.09814 0 409 640: 85% 111/130 [01:02<00:10, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1192 0.09811 0 532 640: 86% 112/130 [01:03<00:10, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1191 0.09817 0 497 640: 87% 113/130 [01:03<00:09, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1191 0.09814 0 500 640: 88% 114/130 [01:04<00:09, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1191 0.09802 0 445 640: 88% 115/130 [01:04<00:08, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1191 0.09799 0 432 640: 89% 116/130 [01:05<00:08, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.119 0.09789 0 398 640: 90% 117/130 [01:06<00:07, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1191 0.09774 0 435 640: 91% 118/130 [01:06<00:06, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1189 0.09758 0 365 640: 92% 119/130 [01:07<00:06, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1189 0.09768 0 502 640: 92% 120/130 [01:07<00:05, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1189 0.09762 0 502 640: 93% 121/130 [01:08<00:04, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1188 0.09776 0 536 640: 94% 122/130 [01:08<00:04, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09775 0 505 640: 95% 123/130 [01:09<00:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09762 0 448 640: 95% 124/130 [01:09<00:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09757 0 499 640: 96% 125/130 [01:10<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09759 0 580 640: 97% 126/130 [01:11<00:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09755 0 480 640: 98% 127/130 [01:11<00:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09754 0 451 640: 98% 128/130 [01:12<00:01, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1187 0.09737 0 377 640: 99% 129/130 [01:12<00:00, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 3/9 7.82G 0.1186 0.0973 0 414 640: 100% 130/130 [01:13<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.55it/s]\n",
+ " all 168 2530 0.7 0.77 0.781 0.38\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.102 0.09723 0 477 640: 1% 1/130 [00:00<01:14, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1105 0.09714 0 471 640: 2% 2/130 [00:01<01:13, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1109 0.09518 0 475 640: 2% 3/130 [00:01<01:10, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1094 0.09204 0 389 640: 3% 4/130 [00:02<01:16, 1.65it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.09198 0 350 640: 4% 5/130 [00:02<01:13, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1096 0.09251 0 498 640: 5% 6/130 [00:03<01:10, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1096 0.09132 0 450 640: 5% 7/130 [00:04<01:09, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1092 0.09162 0 422 640: 6% 8/130 [00:04<01:09, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1083 0.0932 0 432 640: 7% 9/130 [00:05<01:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1097 0.09397 0 418 640: 8% 10/130 [00:05<01:06, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1107 0.09628 0 551 640: 8% 11/130 [00:06<01:06, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1107 0.09556 0 482 640: 9% 12/130 [00:06<01:06, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1102 0.09428 0 392 640: 10% 13/130 [00:07<01:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1099 0.09419 0 519 640: 11% 14/130 [00:07<01:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1105 0.09421 0 368 640: 12% 15/130 [00:08<01:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.09392 0 489 640: 12% 16/130 [00:09<01:04, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1102 0.09471 0 525 640: 13% 17/130 [00:09<01:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1104 0.09354 0 393 640: 14% 18/130 [00:10<01:02, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1104 0.09315 0 399 640: 15% 19/130 [00:10<01:01, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.09251 0 357 640: 15% 20/130 [00:11<01:01, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.11 0.0917 0 411 640: 16% 21/130 [00:11<01:00, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1099 0.09175 0 450 640: 17% 22/130 [00:12<00:59, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1095 0.09098 0 384 640: 18% 23/130 [00:12<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1093 0.09104 0 476 640: 18% 24/130 [00:13<01:01, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1095 0.09049 0 413 640: 19% 25/130 [00:14<01:00, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.09051 0 560 640: 20% 26/130 [00:14<01:00, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1105 0.09008 0 453 640: 21% 27/130 [00:15<00:59, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1104 0.09027 0 485 640: 22% 28/130 [00:15<00:59, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.09002 0 413 640: 22% 29/130 [00:16<00:57, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1102 0.0895 0 432 640: 23% 30/130 [00:16<00:56, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.08899 0 423 640: 24% 31/130 [00:17<00:55, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.08897 0 500 640: 25% 32/130 [00:18<00:55, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1104 0.08943 0 637 640: 25% 33/130 [00:18<00:54, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1102 0.08927 0 477 640: 26% 34/130 [00:19<00:53, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.11 0.08879 0 339 640: 27% 35/130 [00:19<00:52, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1099 0.08843 0 415 640: 28% 36/130 [00:20<00:52, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.11 0.0885 0 489 640: 28% 37/130 [00:20<00:51, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08848 0 491 640: 29% 38/130 [00:21<00:50, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08879 0 537 640: 30% 39/130 [00:21<00:50, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08894 0 507 640: 31% 40/130 [00:22<00:50, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1103 0.08861 0 421 640: 32% 41/130 [00:23<00:49, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1102 0.08825 0 372 640: 32% 42/130 [00:23<00:48, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08826 0 534 640: 33% 43/130 [00:24<00:48, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1099 0.08813 0 411 640: 34% 44/130 [00:24<00:48, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1098 0.08774 0 388 640: 35% 45/130 [00:25<00:47, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1099 0.08724 0 318 640: 35% 46/130 [00:25<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.11 0.08728 0 332 640: 36% 47/130 [00:26<00:47, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08709 0 328 640: 37% 48/130 [00:27<00:48, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08702 0 453 640: 38% 49/130 [00:27<00:48, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1101 0.08698 0 484 640: 38% 50/130 [00:28<00:46, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.11 0.08701 0 447 640: 39% 51/130 [00:28<00:46, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1097 0.0869 0 329 640: 40% 52/130 [00:29<00:45, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1096 0.087 0 477 640: 41% 53/130 [00:30<00:44, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1094 0.08677 0 403 640: 42% 54/130 [00:30<00:43, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1093 0.08676 0 472 640: 42% 55/130 [00:31<00:42, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1092 0.08668 0 407 640: 43% 56/130 [00:31<00:41, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1094 0.08683 0 560 640: 44% 57/130 [00:32<00:40, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1095 0.08658 0 403 640: 45% 58/130 [00:32<00:40, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1096 0.08634 0 373 640: 45% 59/130 [00:33<00:39, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1098 0.08622 0 444 640: 46% 60/130 [00:33<00:39, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1096 0.08604 0 424 640: 47% 61/130 [00:34<00:38, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1095 0.08594 0 407 640: 48% 62/130 [00:35<00:37, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1095 0.08605 0 517 640: 48% 63/130 [00:35<00:36, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1094 0.08632 0 546 640: 49% 64/130 [00:36<00:36, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1092 0.08621 0 345 640: 50% 65/130 [00:36<00:36, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.109 0.08613 0 400 640: 51% 66/130 [00:37<00:35, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1089 0.08616 0 500 640: 52% 67/130 [00:37<00:34, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1088 0.08592 0 308 640: 52% 68/130 [00:38<00:34, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1088 0.08587 0 478 640: 53% 69/130 [00:38<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1087 0.08601 0 472 640: 54% 70/130 [00:39<00:33, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1086 0.08587 0 421 640: 55% 71/130 [00:40<00:33, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1085 0.08572 0 391 640: 55% 72/130 [00:40<00:34, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1084 0.08544 0 325 640: 56% 73/130 [00:41<00:33, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1085 0.08535 0 459 640: 57% 74/130 [00:41<00:32, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1085 0.08531 0 502 640: 58% 75/130 [00:42<00:31, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1084 0.08531 0 416 640: 58% 76/130 [00:43<00:31, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1083 0.08514 0 414 640: 59% 77/130 [00:43<00:30, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1083 0.0854 0 645 640: 60% 78/130 [00:44<00:29, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1083 0.08518 0 348 640: 61% 79/130 [00:44<00:28, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1082 0.08511 0 408 640: 62% 80/130 [00:45<00:28, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1081 0.08496 0 363 640: 62% 81/130 [00:45<00:27, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1081 0.08516 0 569 640: 63% 82/130 [00:46<00:26, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1081 0.08506 0 432 640: 64% 83/130 [00:46<00:25, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.108 0.0852 0 487 640: 65% 84/130 [00:47<00:26, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.108 0.08534 0 578 640: 65% 85/130 [00:48<00:25, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1079 0.08541 0 549 640: 66% 86/130 [00:48<00:24, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1078 0.08544 0 461 640: 67% 87/130 [00:49<00:23, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1077 0.08544 0 483 640: 68% 88/130 [00:49<00:23, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1077 0.08533 0 438 640: 68% 89/130 [00:50<00:22, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1077 0.08538 0 499 640: 69% 90/130 [00:50<00:22, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1076 0.08538 0 490 640: 70% 91/130 [00:51<00:21, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1076 0.08532 0 398 640: 71% 92/130 [00:51<00:21, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1075 0.08534 0 523 640: 72% 93/130 [00:52<00:20, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1074 0.08526 0 469 640: 72% 94/130 [00:53<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1074 0.08522 0 501 640: 73% 95/130 [00:53<00:19, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1073 0.08501 0 384 640: 74% 96/130 [00:54<00:19, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1073 0.08477 0 321 640: 75% 97/130 [00:54<00:19, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1072 0.08462 0 374 640: 75% 98/130 [00:55<00:18, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1072 0.08456 0 485 640: 76% 99/130 [00:55<00:17, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1071 0.0846 0 471 640: 77% 100/130 [00:56<00:17, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1072 0.08453 0 402 640: 78% 101/130 [00:57<00:16, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1071 0.08436 0 381 640: 78% 102/130 [00:57<00:15, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.107 0.08441 0 478 640: 79% 103/130 [00:58<00:14, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1069 0.08425 0 391 640: 80% 104/130 [00:58<00:14, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1069 0.08431 0 546 640: 81% 105/130 [00:59<00:13, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1068 0.08422 0 410 640: 82% 106/130 [00:59<00:13, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1068 0.08451 0 564 640: 82% 107/130 [01:00<00:12, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1068 0.08439 0 411 640: 83% 108/130 [01:00<00:12, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1067 0.08428 0 394 640: 84% 109/130 [01:01<00:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1067 0.08431 0 545 640: 85% 110/130 [01:02<00:11, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1067 0.08416 0 423 640: 85% 111/130 [01:02<00:10, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1067 0.08409 0 459 640: 86% 112/130 [01:03<00:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1067 0.08389 0 386 640: 87% 113/130 [01:03<00:09, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1066 0.08374 0 363 640: 88% 114/130 [01:04<00:08, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1066 0.08376 0 533 640: 88% 115/130 [01:04<00:08, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1065 0.08363 0 380 640: 89% 116/130 [01:05<00:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1064 0.08376 0 646 640: 90% 117/130 [01:05<00:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1064 0.08385 0 543 640: 91% 118/130 [01:06<00:06, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1064 0.08384 0 579 640: 92% 119/130 [01:07<00:06, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1064 0.08389 0 499 640: 92% 120/130 [01:07<00:05, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1064 0.08392 0 469 640: 93% 121/130 [01:08<00:05, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1063 0.08395 0 416 640: 94% 122/130 [01:08<00:04, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1062 0.08403 0 441 640: 95% 123/130 [01:09<00:04, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1061 0.08401 0 394 640: 95% 124/130 [01:10<00:03, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1061 0.08407 0 566 640: 96% 125/130 [01:10<00:02, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.106 0.08395 0 371 640: 97% 126/130 [01:11<00:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.106 0.08393 0 492 640: 98% 127/130 [01:11<00:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.106 0.08388 0 492 640: 98% 128/130 [01:12<00:01, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1059 0.08379 0 391 640: 99% 129/130 [01:12<00:00, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 4/9 7.82G 0.1059 0.08377 0 401 640: 100% 130/130 [01:13<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.54it/s]\n",
+ " all 168 2530 0.813 0.605 0.726 0.311\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.1105 0.09327 0 564 640: 1% 1/130 [00:00<01:10, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.1081 0.08128 0 415 640: 2% 2/130 [00:01<01:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.1032 0.0775 0 371 640: 2% 3/130 [00:01<01:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.1004 0.08242 0 572 640: 3% 4/130 [00:02<01:10, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09995 0.08408 0 489 640: 4% 5/130 [00:02<01:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09886 0.0837 0 509 640: 5% 6/130 [00:03<01:09, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09867 0.08362 0 430 640: 5% 7/130 [00:03<01:08, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09875 0.0834 0 456 640: 6% 8/130 [00:04<01:09, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09909 0.08253 0 449 640: 7% 9/130 [00:05<01:08, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09966 0.08245 0 494 640: 8% 10/130 [00:05<01:12, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09896 0.08189 0 426 640: 8% 11/130 [00:06<01:11, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09849 0.08042 0 303 640: 9% 12/130 [00:06<01:09, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09836 0.07842 0 331 640: 10% 13/130 [00:07<01:07, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09823 0.07796 0 446 640: 11% 14/130 [00:08<01:07, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0988 0.07772 0 430 640: 12% 15/130 [00:08<01:05, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09956 0.07956 0 667 640: 12% 16/130 [00:09<01:04, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09991 0.08017 0 544 640: 13% 17/130 [00:09<01:02, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.1001 0.07957 0 387 640: 14% 18/130 [00:10<01:03, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09973 0.07893 0 416 640: 15% 19/130 [00:10<01:01, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09915 0.07849 0 384 640: 15% 20/130 [00:11<01:01, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09884 0.07834 0 401 640: 16% 21/130 [00:11<01:00, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09878 0.07741 0 361 640: 17% 22/130 [00:12<01:00, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09874 0.07725 0 451 640: 18% 23/130 [00:13<00:59, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09863 0.07688 0 408 640: 18% 24/130 [00:13<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09853 0.07668 0 377 640: 19% 25/130 [00:14<00:58, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09885 0.07688 0 581 640: 20% 26/130 [00:14<00:58, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0986 0.07705 0 520 640: 21% 27/130 [00:15<00:57, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09836 0.0769 0 367 640: 22% 28/130 [00:15<00:56, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09813 0.07623 0 371 640: 22% 29/130 [00:16<00:55, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09811 0.0759 0 411 640: 23% 30/130 [00:16<00:56, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09799 0.07573 0 346 640: 24% 31/130 [00:17<00:56, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09802 0.07555 0 408 640: 25% 32/130 [00:18<00:56, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09816 0.07545 0 480 640: 25% 33/130 [00:18<00:56, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09815 0.07511 0 424 640: 26% 34/130 [00:19<00:57, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09812 0.07506 0 491 640: 27% 35/130 [00:19<00:55, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09784 0.07457 0 336 640: 28% 36/130 [00:20<00:54, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09775 0.07425 0 380 640: 28% 37/130 [00:20<00:52, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09776 0.07428 0 517 640: 29% 38/130 [00:21<00:52, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09781 0.07498 0 598 640: 30% 39/130 [00:22<00:51, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09764 0.07512 0 472 640: 31% 40/130 [00:22<00:50, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09763 0.07525 0 409 640: 32% 41/130 [00:23<00:49, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0977 0.07548 0 595 640: 32% 42/130 [00:23<00:50, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09766 0.07555 0 526 640: 33% 43/130 [00:24<00:49, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09762 0.07567 0 433 640: 34% 44/130 [00:24<00:47, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09765 0.07555 0 381 640: 35% 45/130 [00:25<00:47, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09781 0.0755 0 487 640: 35% 46/130 [00:26<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09776 0.07551 0 490 640: 36% 47/130 [00:26<00:46, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09779 0.07555 0 484 640: 37% 48/130 [00:27<00:45, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09772 0.07518 0 315 640: 38% 49/130 [00:27<00:44, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09792 0.07549 0 544 640: 38% 50/130 [00:28<00:45, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0978 0.07538 0 425 640: 39% 51/130 [00:28<00:44, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09784 0.07561 0 534 640: 40% 52/130 [00:29<00:43, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09784 0.07585 0 553 640: 41% 53/130 [00:29<00:42, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09784 0.07572 0 428 640: 42% 54/130 [00:30<00:43, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09776 0.07566 0 408 640: 42% 55/130 [00:31<00:43, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09756 0.07559 0 387 640: 43% 56/130 [00:31<00:42, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09738 0.07558 0 433 640: 44% 57/130 [00:32<00:42, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09729 0.07559 0 463 640: 45% 58/130 [00:32<00:42, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09737 0.07582 0 581 640: 45% 59/130 [00:33<00:41, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09738 0.07574 0 322 640: 46% 60/130 [00:34<00:40, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09742 0.07591 0 553 640: 47% 61/130 [00:34<00:39, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09742 0.076 0 463 640: 48% 62/130 [00:35<00:38, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09736 0.07615 0 441 640: 48% 63/130 [00:35<00:37, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09727 0.07606 0 436 640: 49% 64/130 [00:36<00:36, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09713 0.076 0 458 640: 50% 65/130 [00:36<00:36, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09702 0.07591 0 389 640: 51% 66/130 [00:37<00:36, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09722 0.07625 0 614 640: 52% 67/130 [00:37<00:35, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09727 0.07695 0 624 640: 52% 68/130 [00:38<00:34, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09735 0.0769 0 398 640: 53% 69/130 [00:39<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09749 0.07693 0 477 640: 54% 70/130 [00:39<00:33, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09735 0.07673 0 355 640: 55% 71/130 [00:40<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0973 0.07675 0 477 640: 55% 72/130 [00:40<00:32, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09719 0.07664 0 442 640: 56% 73/130 [00:41<00:31, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0971 0.07657 0 488 640: 57% 74/130 [00:41<00:31, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09694 0.07661 0 397 640: 58% 75/130 [00:42<00:30, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09687 0.07658 0 431 640: 58% 76/130 [00:42<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09691 0.0768 0 514 640: 59% 77/130 [00:43<00:29, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09701 0.07663 0 423 640: 60% 78/130 [00:44<00:30, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09691 0.0764 0 343 640: 61% 79/130 [00:44<00:29, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09689 0.07626 0 458 640: 62% 80/130 [00:45<00:28, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09677 0.07615 0 382 640: 62% 81/130 [00:45<00:28, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09672 0.07608 0 451 640: 63% 82/130 [00:46<00:28, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0967 0.07587 0 325 640: 64% 83/130 [00:47<00:27, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09674 0.07582 0 467 640: 65% 84/130 [00:47<00:26, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09681 0.07566 0 395 640: 65% 85/130 [00:48<00:25, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09686 0.07577 0 523 640: 66% 86/130 [00:48<00:24, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0968 0.07559 0 331 640: 67% 87/130 [00:49<00:24, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09678 0.07546 0 428 640: 68% 88/130 [00:49<00:23, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0967 0.07556 0 470 640: 68% 89/130 [00:50<00:22, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09672 0.07559 0 378 640: 69% 90/130 [00:50<00:22, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09689 0.07561 0 529 640: 70% 91/130 [00:51<00:21, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09693 0.07558 0 436 640: 71% 92/130 [00:51<00:21, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09702 0.07577 0 609 640: 72% 93/130 [00:52<00:20, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09714 0.07588 0 499 640: 72% 94/130 [00:53<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09709 0.07575 0 416 640: 73% 95/130 [00:53<00:19, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09702 0.07575 0 463 640: 74% 96/130 [00:54<00:18, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09695 0.0757 0 454 640: 75% 97/130 [00:54<00:18, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09689 0.07581 0 535 640: 75% 98/130 [00:55<00:17, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0969 0.07579 0 447 640: 76% 99/130 [00:55<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09689 0.07574 0 420 640: 77% 100/130 [00:56<00:16, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09688 0.07567 0 415 640: 78% 101/130 [00:57<00:16, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09699 0.07567 0 495 640: 78% 102/130 [00:57<00:16, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09695 0.07561 0 406 640: 79% 103/130 [00:58<00:15, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09698 0.07562 0 479 640: 80% 104/130 [00:58<00:15, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09706 0.07586 0 630 640: 81% 105/130 [00:59<00:14, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09696 0.07599 0 595 640: 82% 106/130 [01:00<00:14, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09687 0.07595 0 415 640: 82% 107/130 [01:00<00:13, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0968 0.07584 0 356 640: 83% 108/130 [01:01<00:12, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09671 0.07592 0 495 640: 84% 109/130 [01:01<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0966 0.07587 0 436 640: 85% 110/130 [01:02<00:11, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09659 0.07587 0 532 640: 85% 111/130 [01:02<00:10, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09653 0.0758 0 376 640: 86% 112/130 [01:03<00:10, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09647 0.07574 0 345 640: 87% 113/130 [01:03<00:09, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09653 0.07589 0 555 640: 88% 114/130 [01:04<00:09, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09655 0.07581 0 472 640: 88% 115/130 [01:05<00:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09648 0.07575 0 408 640: 89% 116/130 [01:05<00:07, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.0964 0.07562 0 344 640: 90% 117/130 [01:06<00:07, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09639 0.07552 0 403 640: 91% 118/130 [01:06<00:06, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09638 0.07571 0 650 640: 92% 119/130 [01:07<00:06, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09633 0.0756 0 380 640: 92% 120/130 [01:07<00:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09634 0.07572 0 485 640: 93% 121/130 [01:08<00:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09637 0.07566 0 439 640: 94% 122/130 [01:08<00:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09633 0.07565 0 423 640: 95% 123/130 [01:09<00:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09625 0.07555 0 352 640: 95% 124/130 [01:10<00:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09623 0.07543 0 380 640: 96% 125/130 [01:10<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09615 0.07529 0 358 640: 97% 126/130 [01:11<00:02, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09614 0.07524 0 406 640: 98% 127/130 [01:11<00:01, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09611 0.07531 0 511 640: 98% 128/130 [01:12<00:01, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09609 0.07522 0 428 640: 99% 129/130 [01:12<00:00, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 5/9 7.82G 0.09607 0.07527 0 437 640: 100% 130/130 [01:13<00:00, 1.77it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.52it/s]\n",
+ " all 168 2530 0.915 0.86 0.953 0.538\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09112 0.07379 0 489 640: 1% 1/130 [00:00<01:10, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09172 0.07539 0 493 640: 2% 2/130 [00:01<01:10, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09181 0.07344 0 431 640: 2% 3/130 [00:01<01:09, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09283 0.07132 0 445 640: 3% 4/130 [00:02<01:12, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09209 0.06897 0 359 640: 4% 5/130 [00:02<01:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0909 0.06886 0 461 640: 5% 6/130 [00:03<01:08, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09213 0.07015 0 356 640: 5% 7/130 [00:03<01:07, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09278 0.07249 0 520 640: 6% 8/130 [00:04<01:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09146 0.07072 0 296 640: 7% 9/130 [00:05<01:07, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09119 0.07015 0 437 640: 8% 10/130 [00:05<01:06, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09274 0.07132 0 593 640: 8% 11/130 [00:06<01:05, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09134 0.07124 0 350 640: 9% 12/130 [00:06<01:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09109 0.07186 0 454 640: 10% 13/130 [00:07<01:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09105 0.07218 0 496 640: 11% 14/130 [00:07<01:04, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09103 0.07221 0 403 640: 12% 15/130 [00:08<01:05, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09144 0.07344 0 492 640: 12% 16/130 [00:09<01:07, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0908 0.07286 0 350 640: 13% 17/130 [00:09<01:06, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09106 0.07289 0 476 640: 14% 18/130 [00:10<01:05, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09061 0.07242 0 415 640: 15% 19/130 [00:10<01:05, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09063 0.07145 0 289 640: 15% 20/130 [00:11<01:04, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09066 0.07145 0 396 640: 16% 21/130 [00:11<01:02, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09016 0.07206 0 540 640: 17% 22/130 [00:12<01:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09021 0.07145 0 403 640: 18% 23/130 [00:12<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09002 0.07103 0 420 640: 18% 24/130 [00:13<00:59, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09064 0.07066 0 452 640: 19% 25/130 [00:14<00:58, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09052 0.07018 0 332 640: 20% 26/130 [00:14<00:57, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09068 0.06981 0 362 640: 21% 27/130 [00:15<00:57, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09067 0.06992 0 503 640: 22% 28/130 [00:15<00:57, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0905 0.07038 0 543 640: 22% 29/130 [00:16<00:56, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09076 0.07134 0 586 640: 23% 30/130 [00:16<00:55, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09081 0.07122 0 376 640: 24% 31/130 [00:17<00:54, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09079 0.07108 0 425 640: 25% 32/130 [00:18<00:54, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09072 0.07104 0 458 640: 25% 33/130 [00:18<00:53, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09031 0.07106 0 399 640: 26% 34/130 [00:19<00:53, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0903 0.07128 0 559 640: 27% 35/130 [00:19<00:52, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0902 0.07158 0 461 640: 28% 36/130 [00:20<00:52, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09028 0.07204 0 649 640: 28% 37/130 [00:20<00:51, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09044 0.07231 0 619 640: 29% 38/130 [00:21<00:51, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09048 0.07206 0 424 640: 30% 39/130 [00:21<00:51, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09043 0.07191 0 286 640: 31% 40/130 [00:22<00:52, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09021 0.07201 0 462 640: 32% 41/130 [00:23<00:51, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09003 0.07237 0 502 640: 32% 42/130 [00:23<00:51, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09035 0.07273 0 612 640: 33% 43/130 [00:24<00:50, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.09016 0.07276 0 439 640: 34% 44/130 [00:24<00:49, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08998 0.07278 0 335 640: 35% 45/130 [00:25<00:48, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08992 0.07303 0 451 640: 35% 46/130 [00:25<00:47, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08971 0.07291 0 442 640: 36% 47/130 [00:26<00:46, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08974 0.07284 0 445 640: 37% 48/130 [00:27<00:46, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08965 0.07277 0 433 640: 38% 49/130 [00:27<00:45, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0896 0.07278 0 441 640: 38% 50/130 [00:28<00:44, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08975 0.07309 0 599 640: 39% 51/130 [00:28<00:43, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08987 0.07345 0 657 640: 40% 52/130 [00:29<00:43, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08971 0.07334 0 408 640: 41% 53/130 [00:29<00:42, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08968 0.07337 0 530 640: 42% 54/130 [00:30<00:41, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08951 0.07329 0 477 640: 42% 55/130 [00:30<00:41, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08939 0.07307 0 417 640: 43% 56/130 [00:31<00:41, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08926 0.07276 0 315 640: 44% 57/130 [00:32<00:40, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08933 0.07265 0 457 640: 45% 58/130 [00:32<00:40, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08936 0.0727 0 466 640: 45% 59/130 [00:33<00:39, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08936 0.0727 0 474 640: 46% 60/130 [00:33<00:39, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0895 0.07273 0 454 640: 47% 61/130 [00:34<00:38, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08941 0.07271 0 489 640: 48% 62/130 [00:34<00:37, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0894 0.07253 0 440 640: 48% 63/130 [00:35<00:37, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08936 0.07261 0 571 640: 49% 64/130 [00:36<00:39, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08933 0.07255 0 423 640: 50% 65/130 [00:36<00:38, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08942 0.07248 0 499 640: 51% 66/130 [00:37<00:37, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08934 0.07231 0 338 640: 52% 67/130 [00:37<00:36, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08942 0.07214 0 421 640: 52% 68/130 [00:38<00:35, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08938 0.07223 0 501 640: 53% 69/130 [00:38<00:34, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08926 0.07194 0 299 640: 54% 70/130 [00:39<00:33, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08922 0.0719 0 495 640: 55% 71/130 [00:40<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08908 0.07188 0 467 640: 55% 72/130 [00:40<00:33, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08905 0.07193 0 487 640: 56% 73/130 [00:41<00:32, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08894 0.07189 0 361 640: 57% 74/130 [00:41<00:31, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08886 0.07205 0 504 640: 58% 75/130 [00:42<00:30, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08901 0.07221 0 592 640: 58% 76/130 [00:42<00:30, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08905 0.07205 0 411 640: 59% 77/130 [00:43<00:29, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08907 0.07217 0 504 640: 60% 78/130 [00:43<00:28, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08916 0.07261 0 476 640: 61% 79/130 [00:44<00:28, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08911 0.0725 0 418 640: 62% 80/130 [00:45<00:27, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08911 0.07252 0 478 640: 62% 81/130 [00:45<00:27, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08896 0.07236 0 336 640: 63% 82/130 [00:46<00:26, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08899 0.07222 0 417 640: 64% 83/130 [00:46<00:26, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08899 0.07207 0 416 640: 65% 84/130 [00:47<00:25, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.089 0.0721 0 548 640: 65% 85/130 [00:47<00:25, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.089 0.0719 0 372 640: 66% 86/130 [00:48<00:25, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.089 0.0717 0 385 640: 67% 87/130 [00:49<00:24, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08896 0.07178 0 513 640: 68% 88/130 [00:49<00:24, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08895 0.07165 0 405 640: 68% 89/130 [00:50<00:23, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08896 0.07169 0 392 640: 69% 90/130 [00:50<00:23, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08896 0.07169 0 466 640: 70% 91/130 [00:51<00:22, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08897 0.07173 0 479 640: 71% 92/130 [00:51<00:21, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08899 0.07159 0 389 640: 72% 93/130 [00:52<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08901 0.07146 0 341 640: 72% 94/130 [00:53<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0889 0.07143 0 386 640: 73% 95/130 [00:53<00:19, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08884 0.07145 0 515 640: 74% 96/130 [00:54<00:19, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0888 0.07134 0 409 640: 75% 97/130 [00:54<00:18, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08862 0.07133 0 412 640: 75% 98/130 [00:55<00:17, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0887 0.07146 0 524 640: 76% 99/130 [00:55<00:17, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0888 0.07136 0 454 640: 77% 100/130 [00:56<00:16, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08876 0.07134 0 465 640: 78% 101/130 [00:56<00:16, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0887 0.07141 0 552 640: 78% 102/130 [00:57<00:15, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08863 0.0714 0 497 640: 79% 103/130 [00:58<00:14, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08862 0.07144 0 457 640: 80% 104/130 [00:58<00:14, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08868 0.07143 0 451 640: 81% 105/130 [00:59<00:13, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08871 0.07152 0 535 640: 82% 106/130 [00:59<00:13, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08873 0.07152 0 398 640: 82% 107/130 [01:00<00:12, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08871 0.07155 0 469 640: 83% 108/130 [01:00<00:12, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08868 0.07164 0 617 640: 84% 109/130 [01:01<00:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08859 0.07174 0 570 640: 85% 110/130 [01:01<00:11, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0886 0.07176 0 546 640: 85% 111/130 [01:02<00:11, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08863 0.07169 0 314 640: 86% 112/130 [01:03<00:10, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08859 0.07163 0 438 640: 87% 113/130 [01:03<00:09, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08867 0.07165 0 538 640: 88% 114/130 [01:04<00:09, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08858 0.07163 0 363 640: 88% 115/130 [01:04<00:08, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08854 0.07157 0 412 640: 89% 116/130 [01:05<00:08, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08856 0.07149 0 466 640: 90% 117/130 [01:06<00:07, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08844 0.07146 0 505 640: 91% 118/130 [01:06<00:06, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08841 0.07146 0 414 640: 92% 119/130 [01:07<00:06, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08841 0.07147 0 381 640: 92% 120/130 [01:07<00:05, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08843 0.07137 0 394 640: 93% 121/130 [01:08<00:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08851 0.0714 0 553 640: 94% 122/130 [01:08<00:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08848 0.07142 0 455 640: 95% 123/130 [01:09<00:03, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08854 0.07131 0 422 640: 95% 124/130 [01:09<00:03, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08846 0.07123 0 411 640: 96% 125/130 [01:10<00:02, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08839 0.07116 0 485 640: 97% 126/130 [01:11<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.0884 0.07108 0 340 640: 98% 127/130 [01:11<00:01, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08834 0.07097 0 398 640: 98% 128/130 [01:12<00:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08837 0.07098 0 530 640: 99% 129/130 [01:12<00:00, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 6/9 7.82G 0.08841 0.07099 0 407 640: 100% 130/130 [01:13<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.30it/s]\n",
+ " all 168 2530 0.923 0.875 0.962 0.601\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08546 0.06955 0 442 640: 1% 1/130 [00:00<01:13, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.09241 0.06622 0 421 640: 2% 2/130 [00:01<01:16, 1.66it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08942 0.06913 0 600 640: 2% 3/130 [00:01<01:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08738 0.06421 0 338 640: 3% 4/130 [00:02<01:11, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08592 0.06531 0 534 640: 4% 5/130 [00:02<01:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08541 0.06609 0 436 640: 5% 6/130 [00:03<01:10, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0848 0.06588 0 423 640: 5% 7/130 [00:03<01:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0843 0.06567 0 397 640: 6% 8/130 [00:04<01:07, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08451 0.06568 0 501 640: 7% 9/130 [00:05<01:06, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08439 0.06745 0 604 640: 8% 10/130 [00:05<01:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08406 0.0665 0 364 640: 8% 11/130 [00:06<01:06, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08388 0.06574 0 397 640: 9% 12/130 [00:06<01:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08339 0.06577 0 436 640: 10% 13/130 [00:07<01:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08325 0.06551 0 468 640: 11% 14/130 [00:07<01:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08331 0.06527 0 470 640: 12% 15/130 [00:08<01:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08337 0.06458 0 407 640: 12% 16/130 [00:08<01:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08318 0.06451 0 428 640: 13% 17/130 [00:09<01:02, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08298 0.06489 0 478 640: 14% 18/130 [00:10<01:02, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08301 0.06472 0 448 640: 15% 19/130 [00:10<01:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08333 0.06438 0 446 640: 15% 20/130 [00:11<01:00, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08347 0.06417 0 426 640: 16% 21/130 [00:11<01:00, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08381 0.06421 0 552 640: 17% 22/130 [00:12<01:00, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08357 0.06382 0 365 640: 18% 23/130 [00:12<01:00, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08372 0.06391 0 454 640: 18% 24/130 [00:13<01:01, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08348 0.06355 0 360 640: 19% 25/130 [00:14<00:59, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08308 0.06312 0 275 640: 20% 26/130 [00:14<01:00, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08325 0.06352 0 519 640: 21% 27/130 [00:15<00:59, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08322 0.06325 0 408 640: 22% 28/130 [00:15<00:57, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08368 0.06347 0 386 640: 22% 29/130 [00:16<00:56, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08397 0.0638 0 521 640: 23% 30/130 [00:16<00:56, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08386 0.06332 0 389 640: 24% 31/130 [00:17<00:55, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08384 0.06371 0 530 640: 25% 32/130 [00:17<00:54, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08367 0.06338 0 345 640: 25% 33/130 [00:18<00:54, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08356 0.06366 0 494 640: 26% 34/130 [00:19<00:54, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08345 0.0636 0 404 640: 27% 35/130 [00:19<00:53, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08343 0.06367 0 425 640: 28% 36/130 [00:20<00:52, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0834 0.06369 0 460 640: 28% 37/130 [00:20<00:51, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08338 0.06354 0 463 640: 29% 38/130 [00:21<00:51, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0833 0.06358 0 468 640: 30% 39/130 [00:21<00:50, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08332 0.06364 0 530 640: 31% 40/130 [00:22<00:49, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08325 0.06396 0 475 640: 32% 41/130 [00:22<00:49, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08314 0.06375 0 382 640: 32% 42/130 [00:23<00:49, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0831 0.06405 0 562 640: 33% 43/130 [00:24<00:48, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08298 0.06396 0 389 640: 34% 44/130 [00:24<00:47, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08284 0.06368 0 304 640: 35% 45/130 [00:25<00:47, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08286 0.06373 0 509 640: 35% 46/130 [00:25<00:48, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08299 0.06419 0 545 640: 36% 47/130 [00:26<00:48, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08315 0.06429 0 524 640: 37% 48/130 [00:27<00:47, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08319 0.06437 0 459 640: 38% 49/130 [00:27<00:46, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08312 0.0643 0 465 640: 38% 50/130 [00:28<00:47, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08289 0.06427 0 349 640: 39% 51/130 [00:28<00:46, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08279 0.06424 0 424 640: 40% 52/130 [00:29<00:44, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08281 0.0643 0 486 640: 41% 53/130 [00:29<00:43, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08274 0.06465 0 583 640: 42% 54/130 [00:30<00:43, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08273 0.0645 0 367 640: 42% 55/130 [00:30<00:42, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08275 0.06432 0 336 640: 43% 56/130 [00:31<00:41, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08274 0.0643 0 380 640: 44% 57/130 [00:32<00:40, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0828 0.06457 0 547 640: 45% 58/130 [00:32<00:40, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08262 0.06456 0 443 640: 45% 59/130 [00:33<00:39, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08253 0.06434 0 328 640: 46% 60/130 [00:33<00:38, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08253 0.06444 0 517 640: 47% 61/130 [00:34<00:38, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08243 0.06422 0 366 640: 48% 62/130 [00:34<00:37, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08244 0.0642 0 442 640: 48% 63/130 [00:35<00:37, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08253 0.06428 0 499 640: 49% 64/130 [00:35<00:36, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08255 0.06433 0 464 640: 50% 65/130 [00:36<00:36, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08261 0.06439 0 475 640: 51% 66/130 [00:37<00:36, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08261 0.06461 0 407 640: 52% 67/130 [00:37<00:35, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08255 0.06442 0 340 640: 52% 68/130 [00:38<00:34, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08243 0.06447 0 418 640: 53% 69/130 [00:38<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08233 0.06426 0 357 640: 54% 70/130 [00:39<00:34, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08243 0.0643 0 558 640: 55% 71/130 [00:39<00:33, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08251 0.06445 0 519 640: 55% 72/130 [00:40<00:33, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08242 0.06429 0 318 640: 56% 73/130 [00:41<00:32, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08236 0.06421 0 431 640: 57% 74/130 [00:41<00:32, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08248 0.06444 0 585 640: 58% 75/130 [00:42<00:31, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08242 0.06446 0 432 640: 58% 76/130 [00:42<00:30, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08247 0.06444 0 481 640: 59% 77/130 [00:43<00:29, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0824 0.06441 0 411 640: 60% 78/130 [00:43<00:29, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08237 0.06441 0 457 640: 61% 79/130 [00:44<00:28, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0823 0.06441 0 486 640: 62% 80/130 [00:44<00:27, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08239 0.06443 0 355 640: 62% 81/130 [00:45<00:26, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08227 0.06433 0 345 640: 63% 82/130 [00:46<00:26, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08226 0.06435 0 459 640: 64% 83/130 [00:46<00:25, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08226 0.06442 0 500 640: 65% 84/130 [00:47<00:25, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08235 0.06457 0 540 640: 65% 85/130 [00:47<00:24, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08232 0.06448 0 351 640: 66% 86/130 [00:48<00:24, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08232 0.06456 0 490 640: 67% 87/130 [00:48<00:23, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08221 0.06449 0 446 640: 68% 88/130 [00:49<00:23, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08217 0.0646 0 487 640: 68% 89/130 [00:49<00:22, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08213 0.06445 0 332 640: 69% 90/130 [00:50<00:22, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08211 0.06435 0 385 640: 70% 91/130 [00:51<00:21, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08217 0.06431 0 451 640: 71% 92/130 [00:51<00:20, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08221 0.06431 0 510 640: 72% 93/130 [00:52<00:20, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08226 0.06432 0 487 640: 72% 94/130 [00:52<00:20, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08227 0.0643 0 515 640: 73% 95/130 [00:53<00:19, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08224 0.06416 0 338 640: 74% 96/130 [00:53<00:19, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08233 0.06429 0 570 640: 75% 97/130 [00:54<00:19, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08239 0.0642 0 322 640: 75% 98/130 [00:55<00:18, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08233 0.06419 0 422 640: 76% 99/130 [00:55<00:18, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08236 0.06423 0 462 640: 77% 100/130 [00:56<00:17, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08231 0.06435 0 485 640: 78% 101/130 [00:56<00:16, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08228 0.06423 0 351 640: 78% 102/130 [00:57<00:15, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0823 0.06422 0 462 640: 79% 103/130 [00:57<00:15, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08229 0.06424 0 531 640: 80% 104/130 [00:58<00:14, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08231 0.06412 0 332 640: 81% 105/130 [00:59<00:13, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08235 0.06408 0 468 640: 82% 106/130 [00:59<00:13, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08228 0.06401 0 393 640: 82% 107/130 [01:00<00:12, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08229 0.06392 0 420 640: 83% 108/130 [01:00<00:12, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08228 0.06396 0 472 640: 84% 109/130 [01:01<00:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08229 0.06386 0 445 640: 85% 110/130 [01:01<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0823 0.06396 0 466 640: 85% 111/130 [01:02<00:10, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08229 0.06411 0 586 640: 86% 112/130 [01:02<00:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08238 0.06417 0 361 640: 87% 113/130 [01:03<00:09, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08236 0.06405 0 323 640: 88% 114/130 [01:04<00:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08237 0.06404 0 483 640: 88% 115/130 [01:04<00:08, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08244 0.06408 0 523 640: 89% 116/130 [01:05<00:07, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08245 0.06411 0 532 640: 90% 117/130 [01:05<00:07, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08241 0.06407 0 381 640: 91% 118/130 [01:06<00:07, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08242 0.06416 0 526 640: 92% 119/130 [01:06<00:06, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08245 0.06415 0 440 640: 92% 120/130 [01:07<00:05, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08253 0.06428 0 478 640: 93% 121/130 [01:08<00:05, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08254 0.06431 0 488 640: 94% 122/130 [01:08<00:04, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08257 0.06424 0 383 640: 95% 123/130 [01:09<00:04, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08257 0.06414 0 356 640: 95% 124/130 [01:09<00:03, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08254 0.06421 0 545 640: 96% 125/130 [01:10<00:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08248 0.06414 0 310 640: 97% 126/130 [01:10<00:02, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.0825 0.06417 0 509 640: 98% 127/130 [01:11<00:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08256 0.06419 0 420 640: 98% 128/130 [01:11<00:01, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08255 0.06411 0 390 640: 99% 129/130 [01:12<00:00, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 7/9 7.82G 0.08257 0.06415 0 395 640: 100% 130/130 [01:13<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.64it/s]\n",
+ " all 168 2530 0.96 0.921 0.982 0.655\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.08239 0.06925 0 469 640: 1% 1/130 [00:00<01:09, 1.85it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07659 0.06454 0 417 640: 2% 2/130 [00:01<01:09, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07597 0.0651 0 473 640: 2% 3/130 [00:01<01:09, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07545 0.06345 0 366 640: 3% 4/130 [00:02<01:11, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0751 0.05984 0 272 640: 4% 5/130 [00:02<01:10, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07485 0.05936 0 423 640: 5% 6/130 [00:03<01:09, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07417 0.05937 0 453 640: 5% 7/130 [00:03<01:10, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0748 0.06212 0 691 640: 6% 8/130 [00:04<01:12, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07658 0.06349 0 613 640: 7% 9/130 [00:05<01:11, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07675 0.06273 0 405 640: 8% 10/130 [00:05<01:09, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07684 0.06241 0 431 640: 8% 11/130 [00:06<01:07, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07704 0.06386 0 614 640: 9% 12/130 [00:06<01:08, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07742 0.06469 0 505 640: 10% 13/130 [00:07<01:06, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07813 0.0646 0 414 640: 11% 14/130 [00:07<01:05, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07819 0.06405 0 404 640: 12% 15/130 [00:08<01:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07829 0.06276 0 249 640: 12% 16/130 [00:09<01:04, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07771 0.06268 0 345 640: 13% 17/130 [00:09<01:02, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07779 0.06332 0 587 640: 14% 18/130 [00:10<01:01, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07796 0.06342 0 480 640: 15% 19/130 [00:10<01:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07818 0.06359 0 523 640: 15% 20/130 [00:11<01:01, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07836 0.06383 0 503 640: 16% 21/130 [00:11<01:00, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07866 0.06386 0 404 640: 17% 22/130 [00:12<00:59, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07867 0.06413 0 430 640: 18% 23/130 [00:12<00:58, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0789 0.06381 0 405 640: 18% 24/130 [00:13<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07867 0.06369 0 467 640: 19% 25/130 [00:14<00:58, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07889 0.06356 0 448 640: 20% 26/130 [00:14<00:57, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07891 0.06325 0 449 640: 21% 27/130 [00:15<00:56, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07911 0.06366 0 567 640: 22% 28/130 [00:15<00:56, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07867 0.06349 0 457 640: 22% 29/130 [00:16<00:55, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07839 0.06319 0 468 640: 23% 30/130 [00:16<00:55, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07865 0.06348 0 501 640: 24% 31/130 [00:17<00:55, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07863 0.06357 0 511 640: 25% 32/130 [00:18<00:57, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06331 0 397 640: 25% 33/130 [00:18<00:56, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07846 0.06372 0 490 640: 26% 34/130 [00:19<00:56, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07876 0.0634 0 386 640: 27% 35/130 [00:19<00:55, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0787 0.06347 0 480 640: 28% 36/130 [00:20<00:54, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07865 0.06337 0 495 640: 28% 37/130 [00:20<00:52, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07853 0.06312 0 364 640: 29% 38/130 [00:21<00:51, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07856 0.06303 0 470 640: 30% 39/130 [00:22<00:50, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0785 0.06293 0 492 640: 31% 40/130 [00:22<00:50, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07851 0.06282 0 439 640: 32% 41/130 [00:23<00:49, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06282 0 466 640: 32% 42/130 [00:23<00:48, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07856 0.06282 0 449 640: 33% 43/130 [00:24<00:48, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0786 0.06264 0 440 640: 34% 44/130 [00:24<00:48, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07854 0.06284 0 554 640: 35% 45/130 [00:25<00:47, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07847 0.06266 0 466 640: 35% 46/130 [00:25<00:46, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07842 0.06271 0 486 640: 36% 47/130 [00:26<00:45, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07843 0.06282 0 415 640: 37% 48/130 [00:27<00:45, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07844 0.06288 0 459 640: 38% 49/130 [00:27<00:44, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07836 0.06265 0 379 640: 38% 50/130 [00:28<00:44, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0784 0.06238 0 354 640: 39% 51/130 [00:28<00:43, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07844 0.06225 0 433 640: 40% 52/130 [00:29<00:43, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0783 0.06214 0 343 640: 41% 53/130 [00:29<00:42, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0783 0.06206 0 446 640: 42% 54/130 [00:30<00:42, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07836 0.06185 0 328 640: 42% 55/130 [00:30<00:42, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07848 0.06179 0 467 640: 43% 56/130 [00:31<00:43, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07871 0.06186 0 515 640: 44% 57/130 [00:32<00:42, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07874 0.06194 0 485 640: 45% 58/130 [00:32<00:42, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07871 0.06192 0 442 640: 45% 59/130 [00:33<00:41, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07868 0.06194 0 483 640: 46% 60/130 [00:33<00:40, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07871 0.06218 0 602 640: 47% 61/130 [00:34<00:39, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07871 0.06213 0 417 640: 48% 62/130 [00:34<00:38, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07858 0.06196 0 404 640: 48% 63/130 [00:35<00:37, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06182 0 435 640: 49% 64/130 [00:36<00:37, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07847 0.06166 0 423 640: 50% 65/130 [00:36<00:36, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07839 0.06179 0 457 640: 51% 66/130 [00:37<00:35, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07843 0.06186 0 555 640: 52% 67/130 [00:37<00:34, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07847 0.06182 0 463 640: 52% 68/130 [00:38<00:34, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07843 0.06165 0 424 640: 53% 69/130 [00:38<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07848 0.06178 0 398 640: 54% 70/130 [00:39<00:33, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06189 0 570 640: 55% 71/130 [00:39<00:32, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06183 0 451 640: 55% 72/130 [00:40<00:32, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06185 0 489 640: 56% 73/130 [00:41<00:31, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07842 0.06184 0 453 640: 57% 74/130 [00:41<00:30, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06205 0 580 640: 58% 75/130 [00:42<00:30, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07849 0.06212 0 505 640: 58% 76/130 [00:42<00:30, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07836 0.06194 0 297 640: 59% 77/130 [00:43<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07839 0.06184 0 421 640: 60% 78/130 [00:43<00:29, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07832 0.06181 0 442 640: 61% 79/130 [00:44<00:28, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07825 0.06173 0 404 640: 62% 80/130 [00:45<00:29, 1.67it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07822 0.06178 0 504 640: 62% 81/130 [00:45<00:29, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07816 0.06162 0 310 640: 63% 82/130 [00:46<00:28, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0781 0.06153 0 424 640: 64% 83/130 [00:46<00:27, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07812 0.06183 0 467 640: 65% 84/130 [00:47<00:26, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07807 0.06182 0 432 640: 65% 85/130 [00:47<00:25, 1.74it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07805 0.06181 0 490 640: 66% 86/130 [00:48<00:24, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07797 0.06175 0 421 640: 67% 87/130 [00:49<00:24, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07799 0.06162 0 372 640: 68% 88/130 [00:49<00:23, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07795 0.06149 0 398 640: 68% 89/130 [00:50<00:22, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07796 0.06133 0 347 640: 69% 90/130 [00:50<00:22, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07806 0.06136 0 437 640: 70% 91/130 [00:51<00:21, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07798 0.06144 0 419 640: 71% 92/130 [00:51<00:21, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07798 0.0615 0 444 640: 72% 93/130 [00:52<00:20, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07801 0.06144 0 395 640: 72% 94/130 [00:52<00:20, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.078 0.06135 0 394 640: 73% 95/130 [00:53<00:19, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07803 0.0614 0 487 640: 74% 96/130 [00:54<00:19, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07801 0.06138 0 503 640: 75% 97/130 [00:54<00:18, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.078 0.0614 0 510 640: 75% 98/130 [00:55<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07797 0.06138 0 473 640: 76% 99/130 [00:55<00:17, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07791 0.06125 0 351 640: 77% 100/130 [00:56<00:16, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07785 0.06131 0 532 640: 78% 101/130 [00:56<00:16, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07785 0.06122 0 400 640: 78% 102/130 [00:57<00:15, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07787 0.06109 0 286 640: 79% 103/130 [00:58<00:15, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07788 0.06101 0 407 640: 80% 104/130 [00:58<00:15, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07785 0.06117 0 494 640: 81% 105/130 [00:59<00:14, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0779 0.06122 0 529 640: 82% 106/130 [00:59<00:14, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07799 0.06127 0 551 640: 82% 107/130 [01:00<00:13, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07794 0.06127 0 452 640: 83% 108/130 [01:01<00:12, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07799 0.06125 0 441 640: 84% 109/130 [01:01<00:11, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07792 0.06119 0 449 640: 85% 110/130 [01:02<00:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07788 0.0612 0 454 640: 85% 111/130 [01:02<00:10, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07784 0.06119 0 433 640: 86% 112/130 [01:03<00:10, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07794 0.0613 0 521 640: 87% 113/130 [01:03<00:09, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07794 0.06142 0 557 640: 88% 114/130 [01:04<00:08, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07797 0.06143 0 516 640: 88% 115/130 [01:04<00:08, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07792 0.06135 0 362 640: 89% 116/130 [01:05<00:07, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07793 0.06138 0 502 640: 90% 117/130 [01:05<00:07, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07796 0.06144 0 505 640: 91% 118/130 [01:06<00:06, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.078 0.06142 0 388 640: 92% 119/130 [01:07<00:06, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07803 0.06152 0 646 640: 92% 120/130 [01:07<00:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07806 0.06152 0 411 640: 93% 121/130 [01:08<00:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.078 0.06153 0 367 640: 94% 122/130 [01:08<00:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07792 0.06159 0 489 640: 95% 123/130 [01:09<00:03, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07786 0.06149 0 391 640: 95% 124/130 [01:09<00:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07783 0.06141 0 363 640: 96% 125/130 [01:10<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07781 0.0615 0 586 640: 97% 126/130 [01:10<00:02, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0778 0.06153 0 444 640: 98% 127/130 [01:11<00:01, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07779 0.06144 0 356 640: 98% 128/130 [01:12<00:01, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.0778 0.06151 0 625 640: 99% 129/130 [01:12<00:00, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 8/9 7.82G 0.07783 0.06147 0 362 640: 100% 130/130 [01:13<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.59it/s]\n",
+ " all 168 2530 0.965 0.93 0.985 0.698\n",
+ "\n",
+ " Epoch GPU_mem box_loss obj_loss cls_loss Instances Size\n",
+ " 0% 0/130 [00:00, ?it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.82G 0.06815 0.05287 0 385 640: 1% 1/130 [00:00<01:10, 1.84it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07435 0.05858 0 469 640: 2% 2/130 [00:01<01:11, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07472 0.05675 0 461 640: 2% 3/130 [00:01<01:10, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07365 0.05544 0 339 640: 3% 4/130 [00:02<01:09, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07334 0.05761 0 458 640: 4% 5/130 [00:02<01:08, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07308 0.05851 0 445 640: 5% 6/130 [00:03<01:09, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07308 0.05672 0 363 640: 5% 7/130 [00:03<01:08, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07316 0.05718 0 477 640: 6% 8/130 [00:04<01:08, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07308 0.05677 0 378 640: 7% 9/130 [00:04<01:07, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07252 0.05652 0 447 640: 8% 10/130 [00:05<01:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07328 0.05634 0 432 640: 8% 11/130 [00:06<01:06, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07329 0.05659 0 375 640: 9% 12/130 [00:06<01:05, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07362 0.05727 0 581 640: 10% 13/130 [00:07<01:04, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07352 0.05871 0 678 640: 11% 14/130 [00:07<01:05, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07365 0.05831 0 338 640: 12% 15/130 [00:08<01:04, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07377 0.05882 0 494 640: 12% 16/130 [00:08<01:04, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07384 0.059 0 414 640: 13% 17/130 [00:09<01:04, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07403 0.05904 0 439 640: 14% 18/130 [00:10<01:05, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07418 0.05942 0 526 640: 15% 19/130 [00:10<01:04, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07412 0.05892 0 405 640: 15% 20/130 [00:11<01:02, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07414 0.05891 0 422 640: 16% 21/130 [00:11<01:01, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0739 0.05881 0 416 640: 17% 22/130 [00:12<01:01, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0738 0.05836 0 347 640: 18% 23/130 [00:12<01:00, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0736 0.05813 0 399 640: 18% 24/130 [00:13<00:59, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07393 0.05826 0 488 640: 19% 25/130 [00:14<00:58, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07394 0.05809 0 419 640: 20% 26/130 [00:14<00:58, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07372 0.0576 0 290 640: 21% 27/130 [00:15<00:57, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07394 0.05741 0 454 640: 22% 28/130 [00:15<00:56, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0738 0.0574 0 425 640: 22% 29/130 [00:16<00:55, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0742 0.05799 0 491 640: 23% 30/130 [00:16<00:55, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07418 0.0581 0 525 640: 24% 31/130 [00:17<00:54, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07416 0.05798 0 434 640: 25% 32/130 [00:17<00:54, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07415 0.05801 0 460 640: 25% 33/130 [00:18<00:53, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07409 0.05781 0 396 640: 26% 34/130 [00:19<00:53, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07396 0.0578 0 387 640: 27% 35/130 [00:19<00:52, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07436 0.05869 0 589 640: 28% 36/130 [00:20<00:51, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07431 0.05868 0 516 640: 28% 37/130 [00:20<00:51, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07451 0.0585 0 414 640: 29% 38/130 [00:21<00:52, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07464 0.05848 0 512 640: 30% 39/130 [00:21<00:51, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07464 0.05847 0 477 640: 31% 40/130 [00:22<00:52, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07436 0.05828 0 480 640: 32% 41/130 [00:23<00:51, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07437 0.0583 0 475 640: 32% 42/130 [00:23<00:52, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07441 0.05824 0 482 640: 33% 43/130 [00:24<00:50, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07433 0.05815 0 451 640: 34% 44/130 [00:24<00:49, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07445 0.05825 0 518 640: 35% 45/130 [00:25<00:48, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07431 0.05818 0 334 640: 35% 46/130 [00:25<00:47, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07435 0.05793 0 376 640: 36% 47/130 [00:26<00:46, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07428 0.0584 0 512 640: 37% 48/130 [00:26<00:45, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07418 0.05825 0 410 640: 38% 49/130 [00:27<00:44, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07408 0.05842 0 562 640: 38% 50/130 [00:28<00:44, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07412 0.05867 0 537 640: 39% 51/130 [00:28<00:43, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07416 0.0586 0 400 640: 40% 52/130 [00:29<00:43, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07432 0.0586 0 413 640: 41% 53/130 [00:29<00:42, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07448 0.05881 0 430 640: 42% 54/130 [00:30<00:42, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0746 0.05894 0 507 640: 42% 55/130 [00:30<00:41, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07465 0.0592 0 559 640: 43% 56/130 [00:31<00:41, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07456 0.05923 0 487 640: 44% 57/130 [00:31<00:40, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07457 0.05927 0 451 640: 45% 58/130 [00:32<00:40, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07447 0.05928 0 507 640: 45% 59/130 [00:33<00:39, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07444 0.05925 0 477 640: 46% 60/130 [00:33<00:38, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07431 0.05915 0 458 640: 47% 61/130 [00:34<00:38, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0742 0.05901 0 410 640: 48% 62/130 [00:34<00:38, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07427 0.05903 0 461 640: 48% 63/130 [00:35<00:38, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07413 0.05896 0 437 640: 49% 64/130 [00:35<00:37, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07409 0.05902 0 448 640: 50% 65/130 [00:36<00:37, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07416 0.05903 0 535 640: 51% 66/130 [00:37<00:37, 1.70it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07411 0.05887 0 373 640: 52% 67/130 [00:37<00:36, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07409 0.05885 0 446 640: 52% 68/130 [00:38<00:35, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0741 0.05884 0 444 640: 53% 69/130 [00:38<00:34, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07406 0.05887 0 488 640: 54% 70/130 [00:39<00:33, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.05915 0 542 640: 55% 71/130 [00:39<00:32, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07413 0.05913 0 403 640: 55% 72/130 [00:40<00:32, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07423 0.05927 0 573 640: 56% 73/130 [00:41<00:31, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07426 0.05918 0 433 640: 57% 74/130 [00:41<00:31, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.05911 0 375 640: 58% 75/130 [00:42<00:30, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07417 0.05935 0 597 640: 58% 76/130 [00:42<00:29, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07434 0.0597 0 642 640: 59% 77/130 [00:43<00:29, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0743 0.05967 0 425 640: 60% 78/130 [00:43<00:29, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07439 0.05958 0 278 640: 61% 79/130 [00:44<00:28, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07456 0.05938 0 336 640: 62% 80/130 [00:44<00:27, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07456 0.05922 0 342 640: 62% 81/130 [00:45<00:26, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07447 0.05904 0 285 640: 63% 82/130 [00:46<00:26, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07449 0.05893 0 418 640: 64% 83/130 [00:46<00:25, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07447 0.05892 0 426 640: 65% 84/130 [00:47<00:25, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07436 0.05882 0 425 640: 65% 85/130 [00:47<00:24, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07433 0.05894 0 446 640: 66% 86/130 [00:48<00:24, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07426 0.05887 0 376 640: 67% 87/130 [00:48<00:24, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07429 0.05883 0 459 640: 68% 88/130 [00:49<00:23, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0743 0.05873 0 356 640: 68% 89/130 [00:50<00:23, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07418 0.05855 0 313 640: 69% 90/130 [00:50<00:23, 1.68it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07422 0.05855 0 418 640: 70% 91/130 [00:51<00:22, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0742 0.05869 0 601 640: 71% 92/130 [00:51<00:21, 1.75it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07423 0.05883 0 587 640: 72% 93/130 [00:52<00:20, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.05874 0 378 640: 72% 94/130 [00:52<00:20, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07425 0.05876 0 514 640: 73% 95/130 [00:53<00:19, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07417 0.05875 0 469 640: 74% 96/130 [00:53<00:18, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07422 0.05869 0 417 640: 75% 97/130 [00:54<00:18, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07423 0.0587 0 476 640: 75% 98/130 [00:55<00:18, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07429 0.05872 0 480 640: 76% 99/130 [00:55<00:17, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07432 0.0587 0 363 640: 77% 100/130 [00:56<00:16, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07434 0.05876 0 520 640: 78% 101/130 [00:56<00:15, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07429 0.05873 0 418 640: 78% 102/130 [00:57<00:15, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0742 0.05864 0 360 640: 79% 103/130 [00:57<00:14, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0742 0.05859 0 452 640: 80% 104/130 [00:58<00:14, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07419 0.05853 0 380 640: 81% 105/130 [00:58<00:13, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.0584 0 357 640: 82% 106/130 [00:59<00:13, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07426 0.05834 0 422 640: 82% 107/130 [01:00<00:12, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.05819 0 317 640: 83% 108/130 [01:00<00:12, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07424 0.05818 0 489 640: 84% 109/130 [01:01<00:11, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07423 0.05818 0 431 640: 85% 110/130 [01:01<00:11, 1.72it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07421 0.05812 0 412 640: 85% 111/130 [01:02<00:11, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07409 0.05807 0 392 640: 86% 112/130 [01:02<00:10, 1.71it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07401 0.05806 0 457 640: 87% 113/130 [01:03<00:10, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07403 0.05807 0 416 640: 88% 114/130 [01:04<00:09, 1.69it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07401 0.0581 0 536 640: 88% 115/130 [01:04<00:08, 1.73it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07399 0.05806 0 405 640: 89% 116/130 [01:05<00:07, 1.76it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07401 0.05796 0 354 640: 90% 117/130 [01:05<00:07, 1.78it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0739 0.05791 0 394 640: 91% 118/130 [01:06<00:06, 1.77it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07388 0.05794 0 380 640: 92% 119/130 [01:06<00:06, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07395 0.05814 0 589 640: 92% 120/130 [01:07<00:05, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07385 0.0581 0 307 640: 93% 121/130 [01:08<00:04, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07394 0.05821 0 511 640: 94% 122/130 [01:08<00:04, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07394 0.05825 0 546 640: 95% 123/130 [01:09<00:03, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07395 0.05821 0 430 640: 95% 124/130 [01:09<00:03, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07392 0.05813 0 391 640: 96% 125/130 [01:10<00:02, 1.81it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07394 0.0581 0 437 640: 97% 126/130 [01:10<00:02, 1.79it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.074 0.05829 0 644 640: 98% 127/130 [01:11<00:01, 1.80it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.07405 0.05839 0 564 640: 98% 128/130 [01:11<00:01, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0741 0.05838 0 434 640: 99% 129/130 [01:12<00:00, 1.82it/s]/content/SMN-YOLOv5s/train.py:316: FutureWarning: `torch.cuda.amp.autocast(args...)` is deprecated. Please use `torch.amp.autocast('cuda', args...)` instead.\n",
+ " with torch.cuda.amp.autocast(amp):\n",
+ " 9/9 7.83G 0.0741 0.05832 0 292 640: 100% 130/130 [01:12<00:00, 1.78it/s]\n",
+ " Class Images Instances P R mAP50 mAP50-95: 100% 6/6 [00:01<00:00, 3.27it/s]\n",
+ " all 168 2530 0.969 0.944 0.988 0.714\n",
+ "\n",
+ "10 epochs completed in 0.213 hours.\n",
+ "Optimizer stripped from runs/train/exp9/weights/last.pt, 13.9MB\n",
+ "Optimizer stripped from runs/train/exp9/weights/best.pt, 13.9MB\n",
+ "\n",
+ "Validating runs/train/exp9/weights/best.pt...\n",
+ "Traceback (most recent call last):\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 647, in \n",
+ " main(opt)\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 536, in main\n",
+ " train(opt.hyp, opt, device, callbacks)\n",
+ " File \"/content/SMN-YOLOv5s/train.py\", line 423, in train\n",
+ " model=attempt_load(f, device).half(),\n",
+ " ^^^^^^^^^^^^^^^^^^^^^^^\n",
+ " File \"/content/SMN-YOLOv5s/models/experimental.py\", line 79, in attempt_load\n",
+ " ckpt = torch.load(attempt_download(w), map_location='cpu') # load\n",
+ " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n",
+ " File \"/usr/local/lib/python3.12/dist-packages/torch/serialization.py\", line 1529, in load\n",
+ " raise pickle.UnpicklingError(_get_wo_message(str(e))) from None\n",
+ "_pickle.UnpicklingError: Weights only load failed. This file can still be loaded, to do so you have two options, \u001b[1mdo those steps only if you trust the source of the checkpoint\u001b[0m. \n",
+ "\t(1) In PyTorch 2.6, we changed the default value of the `weights_only` argument in `torch.load` from `False` to `True`. Re-running `torch.load` with `weights_only` set to `False` will likely succeed, but it can result in arbitrary code execution. Do it only if you got the file from a trusted source.\n",
+ "\t(2) Alternatively, to load with `weights_only=True` please check the recommended steps in the following error message.\n",
+ "\tWeightsUnpickler error: Unsupported global: GLOBAL models.yolo.DetectionModel was not an allowed global by default. Please use `torch.serialization.add_safe_globals([models.yolo.DetectionModel])` or the `torch.serialization.safe_globals([models.yolo.DetectionModel])` context manager to allowlist this global if you trust this class/function.\n",
+ "\n",
+ "Check the documentation of torch.load to learn more about types accepted by default with weights_only https://pytorch.org/docs/stable/generated/torch.load.html.\n"
+ ]
+ }
+ ],
+ "source": [
+ "!python train.py --img 640 --batch 16 --epochs 10 --data {dataset.location}/data.yaml --weights '' --cfg /content/SMN-YOLOv5s/models/yolov5s-c3se.yaml --cache"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "w4XrkoQsq3R6",
+ "outputId": "21f88754-f381-4a93-bb77-c42f61f70f80"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[34m\u001b[1mdetect: \u001b[0mweights=['runs/train/exp8/weights/best.pt'], source=/content/SMN-YOLOv5s/potato-counting-1/test/images, data=data/coco128.yaml, imgsz=[640, 640], conf_thres=0.1, iou_thres=0.45, max_det=1000, device=, view_img=False, save_txt=False, save_csv=False, save_conf=False, save_crop=False, nosave=False, classes=None, agnostic_nms=False, augment=False, visualize=False, update=False, project=runs/detect, name=exp, exist_ok=False, line_thickness=3, hide_labels=False, hide_conf=False, half=False, dnn=False, vid_stride=1\n",
+ "YOLOv5 🚀 704b81b1 Python-3.12.12 torch-2.9.0+cu128 CUDA:0 (Tesla T4, 14913MiB)\n",
+ "\n",
+ "Fusing layers... \n",
+ "YOLOv5s-cbam summary: 224 layers, 7074200 parameters, 0 gradients, 15.8 GFLOPs\n",
+ "image 1/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0001_jpg.rf.e6eb44d08cce17b3d731fc3289476049.jpg: 384x640 24 kentangs, 58.4ms\n",
+ "image 2/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0023_jpg.rf.a6688cb1ed6fcb550d42248530abba77.jpg: 384x640 19 kentangs, 18.6ms\n",
+ "image 3/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0047_jpg.rf.f282e04cdbdf264ea2bca36739ab1c06.jpg: 384x640 24 kentangs, 12.0ms\n",
+ "image 4/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0010_jpg.rf.35a1f8e9d3b468697a346af8192c2f5e.jpg: 384x640 13 kentangs, 21.2ms\n",
+ "image 5/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0031_jpg.rf.b7aae0e45e4b6d345f3cb500c0b8351e.jpg: 384x640 17 kentangs, 11.8ms\n",
+ "image 6/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0043_jpg.rf.2bc115567701b6290beeb107a92dd14c.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 7/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0001_jpg.rf.63cc7c52e36253d92748ebee7d3a2b74.jpg: 384x640 18 kentangs, 11.7ms\n",
+ "image 8/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0007_jpg.rf.c16cf84c451aa0637489640658bf371f.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 9/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0016_jpg.rf.8a239cd42e4c9a09a2169bc0bde1cdd8.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 10/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0005_jpg.rf.cc17489b232716d28a31f640ddfa4500.jpg: 384x640 28 kentangs, 11.4ms\n",
+ "image 11/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0008_jpg.rf.6ea395755fb36e97300a0f0a7bf7b104.jpg: 384x640 26 kentangs, 11.4ms\n",
+ "image 12/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0017_jpg.rf.ae58af19aeaf53c3fb0d07f279817503.jpg: 384x640 20 kentangs, 11.3ms\n",
+ "image 13/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0001_jpg.rf.24f3bc14c84e165983b169281c29dca9.jpg: 384x640 22 kentangs, 12.2ms\n",
+ "image 14/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0032_jpg.rf.187dfc82c453ef2df043174092c71b03.jpg: 384x640 33 kentangs, 11.3ms\n",
+ "image 15/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0052_jpg.rf.96d8f2f440bf33b3a122503e42615bcc.jpg: 384x640 25 kentangs, 11.3ms\n",
+ "image 16/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0017_jpg.rf.80aa1a2ced3a3b47cc46b6b7591bd8ae.jpg: 384x640 15 kentangs, 11.4ms\n",
+ "image 17/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0047_jpg.rf.b342f6f011ad9f8944575c18b4f95d6c.jpg: 384x640 21 kentangs, 11.3ms\n",
+ "image 18/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0059_jpg.rf.58532654034538612d351cb84767febc.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 19/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0001_jpg.rf.e933754d7f74d3773738a2d1b9596b0b.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 20/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0017_jpg.rf.08fc856c440f010fcf5741f7e0d3dcb8.jpg: 384x640 24 kentangs, 11.4ms\n",
+ "image 21/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0025_jpg.rf.e6e55cf6299ee807fc54126439fec673.jpg: 384x640 28 kentangs, 11.3ms\n",
+ "image 22/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0001_jpg.rf.47189811dc38f844b1160d601fb1f001.jpg: 384x640 17 kentangs, 11.3ms\n",
+ "image 23/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0014_jpg.rf.96ec68bb5214bea404854664b213c188.jpg: 384x640 22 kentangs, 11.3ms\n",
+ "image 24/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0022_jpg.rf.de36633df84910b5560f799d1b05f4b7.jpg: 384x640 27 kentangs, 11.3ms\n",
+ "image 25/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0001_jpg.rf.22472ee39e65a19424b0ee6ac030a6c7.jpg: 384x640 29 kentangs, 14.5ms\n",
+ "image 26/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0029_jpg.rf.78009df3407cf93c18bc4948cdfae67a.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 27/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0065_jpg.rf.547cb80dec5b73ee4e10bd51aa4b11c3.jpg: 384x640 44 kentangs, 12.5ms\n",
+ "image 28/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0001_jpg.rf.9b8190377fa845ed3e86cc390262b71f.jpg: 384x640 33 kentangs, 11.4ms\n",
+ "image 29/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0014_jpg.rf.7a8899f462ad21554ae9aa465f0713d1.jpg: 384x640 35 kentangs, 13.6ms\n",
+ "image 30/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0029_jpg.rf.8326b0175ea922cd5282c7b5add376a3.jpg: 384x640 34 kentangs, 11.4ms\n",
+ "image 31/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0001_jpg.rf.5e3a33a8e14ef2fe0fe376c4cd718b71.jpg: 384x640 32 kentangs, 11.4ms\n",
+ "image 32/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0012_jpg.rf.0bc15ed35586a033e71c574a2e5b7690.jpg: 384x640 29 kentangs, 11.4ms\n",
+ "image 33/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0022_jpg.rf.fbd6b3da05f9790c6ff1522aba7ce405.jpg: 384x640 38 kentangs, 11.4ms\n",
+ "image 34/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0001_jpg.rf.a36cca51da3e045a5d436c680fb1d6fe.jpg: 384x640 38 kentangs, 11.4ms\n",
+ "image 35/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0008_jpg.rf.e880bd0675d40bfa7abad7da3eef31c5.jpg: 384x640 31 kentangs, 11.4ms\n",
+ "image 36/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0014_jpg.rf.f454b03d7e5f068e38947195745f8630.jpg: 384x640 37 kentangs, 11.4ms\n",
+ "image 37/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0001_jpg.rf.c0c5007b6b7d9ee70783e1a0c5f819e5.jpg: 384x640 46 kentangs, 11.4ms\n",
+ "image 38/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0002_jpg.rf.3d4763435fff98950bf57ba19c7887c7.jpg: 384x640 48 kentangs, 11.4ms\n",
+ "image 39/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0029_jpg.rf.8d29c35541b05ed34b26eae788a76ab7.jpg: 384x640 57 kentangs, 11.4ms\n",
+ "image 40/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0001_jpg.rf.a2530851cd2252912350773d298442a5.jpg: 384x640 43 kentangs, 11.4ms\n",
+ "image 41/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0015_jpg.rf.fe8e121c52e8fac05a0b1088d209485f.jpg: 384x640 46 kentangs, 11.4ms\n",
+ "image 42/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0029_jpg.rf.476d1c69ba2dc4eb007e2c62da58cd54.jpg: 384x640 58 kentangs, 11.4ms\n",
+ "image 43/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0001_jpg.rf.98ae4a736897aa564504db7cc5a0ec59.jpg: 384x640 62 kentangs, 11.4ms\n",
+ "image 44/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0009_jpg.rf.c9d75f53eaf49b30297ae8cbf9baa2e7.jpg: 384x640 63 kentangs, 11.4ms\n",
+ "image 45/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0020_jpg.rf.d5c9abb1d4b51cac15183929d5131d20.jpg: 384x640 86 kentangs, 13.1ms\n",
+ "image 46/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0001_jpg.rf.718d062c0dd51d19b14541393321ce13.jpg: 384x640 54 kentangs, 11.4ms\n",
+ "image 47/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0002_jpg.rf.534cf079959a749879b47c3a77b361ab.jpg: 384x640 54 kentangs, 11.4ms\n",
+ "image 48/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0011_jpg.rf.01560dd5f5101dda2394ba8a7bf51259.jpg: 384x640 64 kentangs, 11.6ms\n",
+ "image 49/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0001_jpg.rf.58ff164b3e4c73957574ddc54cfc3c40.jpg: 384x640 55 kentangs, 12.6ms\n",
+ "image 50/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0002_jpg.rf.48bb97033e272225e5aff17d313b92c9.jpg: 384x640 51 kentangs, 11.4ms\n",
+ "image 51/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0007_jpg.rf.d1d050714f5502b782f6f64a2589e9e6.jpg: 384x640 50 kentangs, 11.4ms\n",
+ "image 52/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0001_jpg.rf.888eb1919b58cb161646b083ede20ab5.jpg: 384x640 43 kentangs, 11.4ms\n",
+ "image 53/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0002_jpg.rf.6c73fb7ed7df2f0e95370eeba3a739db.jpg: 384x640 46 kentangs, 11.4ms\n",
+ "image 54/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0011_jpg.rf.5e3ee4f3a24b1fdabf2e83f8d7b2fbe7.jpg: 384x640 50 kentangs, 11.5ms\n",
+ "image 55/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0001_jpg.rf.4633e5d4ffb7c71d0a86fbe1208ce550.jpg: 384x640 64 kentangs, 11.4ms\n",
+ "image 56/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0003_jpg.rf.7d61297ca41f2fb9b3255eb1f92b7856.jpg: 384x640 65 kentangs, 11.4ms\n",
+ "image 57/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0007_jpg.rf.90e0fe8c043d0c691777d56aba2b5d5f.jpg: 384x640 54 kentangs, 11.4ms\n",
+ "image 58/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0001_jpg.rf.4f9f1471a246bdec09bc88f7160801a9.jpg: 384x640 77 kentangs, 11.4ms\n",
+ "image 59/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0005_jpg.rf.f787616b18864a6d9e6ac4dd5f1038cd.jpg: 384x640 76 kentangs, 13.2ms\n",
+ "image 60/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0008_jpg.rf.4bee184d41d506c303a4635399e9736a.jpg: 384x640 55 kentangs, 11.4ms\n",
+ "image 61/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0056_jpg.rf.63f37af9fbda63f5e08474bca7d7dbc8.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 62/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0081_jpg.rf.ddfdd4e3dbb22ecc994ca9a60b8e388e.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 63/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0101_jpg.rf.92a42347878dcb1b39cd50c65c24a129.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 64/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0001_jpg.rf.3842ba6d063f90dc9a85ab6b24813efd.jpg: 384x640 11 kentangs, 11.3ms\n",
+ "image 65/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0035_jpg.rf.6f65aa3a8d2345817abd6ed498a384ac.jpg: 384x640 24 kentangs, 11.4ms\n",
+ "image 66/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0050_jpg.rf.39437cdbfaa71da62a0771614e6a6c81.jpg: 384x640 22 kentangs, 12.3ms\n",
+ "image 67/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0018_jpg.rf.eeeab9cf18c348a22fd63ffc8f19d30e.jpg: 384x640 17 kentangs, 11.4ms\n",
+ "image 68/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0027_jpg.rf.8cabba09f2708f132c69eedb253a72ac.jpg: 384x640 26 kentangs, 11.4ms\n",
+ "image 69/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0033_jpg.rf.e356d17d51ca9a1b0d129926014ba76a.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 70/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0013_jpg.rf.1b961001171c343faf0a1c87b72e847c.jpg: 384x640 15 kentangs, 11.4ms\n",
+ "image 71/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0019_jpg.rf.7b5ec74fc10e34c4b4797659fc52d3df.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 72/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0024_jpg.rf.b8de672a3ac6c5bfa02f8f5734a6c599.jpg: 384x640 19 kentangs, 11.4ms\n",
+ "image 73/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0001_jpg.rf.36524bb9c12dcba5ffbfa7b55dd24f16.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 74/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0023_jpg.rf.9eeebf3d949a198242dfa9229075fb31.jpg: 384x640 19 kentangs, 11.4ms\n",
+ "image 75/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0051_jpg.rf.7b8ea41b59cc9299a4fb50da349d15ef.jpg: 384x640 26 kentangs, 11.4ms\n",
+ "image 76/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0008_jpg.rf.a88edd5deae76098a0110aff77a5e976.jpg: 384x640 13 kentangs, 11.7ms\n",
+ "image 77/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0032_jpg.rf.9a690255b263410ba2fe9bc41795620b.jpg: 384x640 19 kentangs, 12.0ms\n",
+ "image 78/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0046_jpg.rf.31eba01c47163680425a900a539b7568.jpg: 384x640 24 kentangs, 13.2ms\n",
+ "image 79/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0001_jpg.rf.98ce7380370eb6ce2556602538f1523b.jpg: 384x640 17 kentangs, 11.5ms\n",
+ "image 80/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0024_jpg.rf.55c18c32956cf051d11dc8ab0be27653.jpg: 384x640 19 kentangs, 19.0ms\n",
+ "image 81/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0032_jpg.rf.fe81ad2d1ee9c03ce41c833d70c44f13.jpg: 384x640 23 kentangs, 11.8ms\n",
+ "image 82/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0008_jpg.rf.943641cc10217c71f4ebc9bff5db8ca5.jpg: 384x640 14 kentangs, 15.9ms\n",
+ "image 83/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0016_jpg.rf.1c87322cf1fb4ffcca842908afc4fe63.jpg: 384x640 20 kentangs, 11.4ms\n",
+ "image 84/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0022_jpg.rf.1f49bdbfa4aae29d26f531068c5c6709.jpg: 384x640 23 kentangs, 11.4ms\n",
+ "image 85/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0053_jpg.rf.f6f69f98c11804c9dab6bc9847ba5328.jpg: 384x640 11 kentangs, 11.3ms\n",
+ "image 86/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0074_jpg.rf.f2823bb1b7a757c96204e8d6c5475e44.jpg: 384x640 16 kentangs, 11.3ms\n",
+ "image 87/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0093_jpg.rf.f739fcf09ed1d7aef061f437c2d39515.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 88/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0056_jpg.rf.81c87799f88a9590b840dea0b1932aa5.jpg: 384x640 12 kentangs, 11.3ms\n",
+ "image 89/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0069_jpg.rf.a655a0ec3dc5000688d69d0da1bca325.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 90/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0080_jpg.rf.0e325c0ced8268fdb2e517da918f5873.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 91/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0035_jpg.rf.114e05c12b9a747d3472cd9d25cbc16c.jpg: 384x640 11 kentangs, 11.4ms\n",
+ "image 92/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0043_jpg.rf.4176dfb24bdd00ba9aa142df52b2e07b.jpg: 384x640 14 kentangs, 12.2ms\n",
+ "image 93/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0047_jpg.rf.d13bca82bc2569f80878024d67c366cc.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 94/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0025_jpg.rf.e9d0aaa28b37b0257910b4e35c86b442.jpg: 384x640 13 kentangs, 11.4ms\n",
+ "image 95/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0030_jpg.rf.381ae89c4d4d21b271e99cc042e28dcf.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 96/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0036_jpg.rf.769c79e43290d3709ebcb3f3a01127c8.jpg: 384x640 16 kentangs, 11.3ms\n",
+ "image 97/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0050_jpg.rf.5e013e1743201317e3f6e21e659e76aa.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 98/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0074_jpg.rf.f519fc0223ba45bfc340dc5cf09cd653.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 99/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0098_jpg.rf.84aab28cb6c37d4c7d91466c72cb718d.jpg: 384x640 18 kentangs, 12.6ms\n",
+ "image 100/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0029_jpg.rf.5b1742cad26f047f63fb2133f63967d7.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 101/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0039_jpg.rf.92e94b8b19036a1b288614d5cca716a4.jpg: 384x640 19 kentangs, 12.3ms\n",
+ "image 102/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0050_jpg.rf.6471950e6b87e95fd28a5d6f09ace411.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 103/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0035_jpg.rf.d6a185c06cfeaa717458b04989a51965.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 104/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0044_jpg.rf.34be41c7033fa5a5da9958ae03aeee7c.jpg: 384x640 17 kentangs, 17.7ms\n",
+ "image 105/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0050_jpg.rf.1f32892a4daacb0e4c9d8385c1afc187.jpg: 384x640 22 kentangs, 22.5ms\n",
+ "image 106/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0032_jpg.rf.b2b55fb719381a371a41cadaae953d95.jpg: 384x640 11 kentangs, 18.2ms\n",
+ "image 107/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0038_jpg.rf.f16a2a5fc14bff6b1e9dc35e42799db5.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 108/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0044_jpg.rf.3eab04f85e2cc43c561dd1cd91aea91b.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 109/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0068_jpg.rf.872322922e3d2f173fe6c229d2083907.jpg: 384x640 21 kentangs, 11.4ms\n",
+ "image 110/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0092_jpg.rf.9857704f117735beb7e442a3291745ca.jpg: 384x640 26 kentangs, 26.5ms\n",
+ "image 111/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0112_jpg.rf.2f002108d8de825e3f21dc2af69f00f9.jpg: 384x640 33 kentangs, 25.7ms\n",
+ "image 112/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0033_jpg.rf.72dcd9e8062dca13197ed1f815854257.jpg: 384x640 23 kentangs, 21.6ms\n",
+ "image 113/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0047_jpg.rf.2fc52335e3175f9ace78a5c33bc13ecc.jpg: 384x640 29 kentangs, 23.8ms\n",
+ "image 114/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0059_jpg.rf.4982cc7d5468ad58f2a908ef3d64178c.jpg: 384x640 27 kentangs, 23.4ms\n",
+ "image 115/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0039_jpg.rf.72f4b05993a9a1f836691f115212840f.jpg: 384x640 25 kentangs, 11.9ms\n",
+ "image 116/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0047_jpg.rf.fc9714fbe7f36705c73f64ca6bd01477.jpg: 384x640 25 kentangs, 15.2ms\n",
+ "image 117/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0053_jpg.rf.7ff7e49dbc70cc636316005049ea0adc.jpg: 384x640 39 kentangs, 12.8ms\n",
+ "image 118/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0029_jpg.rf.350222b73536cd1b2fe00bb36046a311.jpg: 384x640 17 kentangs, 11.4ms\n",
+ "image 119/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0035_jpg.rf.3cc980ea61f7137aa2f0864fd7505fd1.jpg: 384x640 28 kentangs, 11.4ms\n",
+ "image 120/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0041_jpg.rf.68f7c106dafe1f8965aad9045b830fbb.jpg: 384x640 36 kentangs, 11.4ms\n",
+ "image 121/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0071_jpg.rf.2908d238dd69daefaab4eda8922bb6b9.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 122/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0092_jpg.rf.c7efb5b9aee29d3f54338d1a62b85947.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 123/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0116_jpg.rf.0ea8d758b4487b10ac3db3f34298e8ed.jpg: 384x640 31 kentangs, 11.4ms\n",
+ "image 124/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0041_jpg.rf.ec03e5f5629a2cc919746550bed78b88.jpg: 384x640 20 kentangs, 11.4ms\n",
+ "image 125/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0053_jpg.rf.f2ee934e099d8c96f0de51fd8748e8da.jpg: 384x640 24 kentangs, 11.4ms\n",
+ "image 126/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0062_jpg.rf.6a398a5ffa95d9cae8262c03f14725b3.jpg: 384x640 44 kentangs, 11.4ms\n",
+ "image 127/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0035_jpg.rf.a60af036b1819f722092f1b242b92166.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 128/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0043_jpg.rf.d61187ec02ee553e097c4e166c2c299f.jpg: 384x640 40 kentangs, 11.4ms\n",
+ "image 129/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0048_jpg.rf.384c68e485e38182b8e198fec264642c.jpg: 384x640 38 kentangs, 11.4ms\n",
+ "image 130/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0029_jpg.rf.404b8444d4f73d54f2f0d93ad24ab43e.jpg: 384x640 31 kentangs, 15.8ms\n",
+ "image 131/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0035_jpg.rf.f3d49a3ed44bd006e728a519be02f2b9.jpg: 384x640 34 kentangs, 13.2ms\n",
+ "image 132/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0039_jpg.rf.d7fbfde1e3e19ffadcf19da889cf8f42.jpg: 384x640 39 kentangs, 11.4ms\n",
+ "image 133/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0056_jpg.rf.9abe5ffdf392d2a05efd96f347fa29a9.jpg: 384x640 46 kentangs, 11.4ms\n",
+ "image 134/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0083_jpg.rf.9f3a500268fb067e985f5f35aa940c9b.jpg: 384x640 50 kentangs, 17.4ms\n",
+ "image 135/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0098_jpg.rf.a09d7ec02f5652094cb1dc3ecea22bf7.jpg: 384x640 73 kentangs, 11.4ms\n",
+ "image 136/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0038_jpg.rf.ee399e884732f4da301b0a3b7b877a57.jpg: 384x640 44 kentangs, 11.4ms\n",
+ "image 137/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0050_jpg.rf.20e23ce8af79323596c5fb7969784dbb.jpg: 384x640 62 kentangs, 11.4ms\n",
+ "image 138/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0062_jpg.rf.f4b8ded38a99c36d43c60bab45c5d4ae.jpg: 384x640 75 kentangs, 14.7ms\n",
+ "image 139/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0029_jpg.rf.424b4b0e34cb28623d1319e9cf69c0ad.jpg: 384x640 40 kentangs, 11.4ms\n",
+ "image 140/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0038_jpg.rf.10461adcfb3f35e5651305011a47c3fd.jpg: 384x640 46 kentangs, 12.2ms\n",
+ "image 141/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0046_jpg.rf.7e48f6964de2f89bbff9bfd4561fa368.jpg: 384x640 57 kentangs, 11.4ms\n",
+ "image 142/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0029_jpg.rf.a3f318473e0a3bf7332e3fa04adc33b8.jpg: 384x640 41 kentangs, 11.4ms\n",
+ "image 143/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0036_jpg.rf.420d68773ff2925f82219a432ef8deb3.jpg: 384x640 61 kentangs, 14.9ms\n",
+ "image 144/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0041_jpg.rf.07c32656e48f2ed188366960ca84a1dc.jpg: 384x640 60 kentangs, 11.4ms\n",
+ "image 145/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0074_jpg.rf.6e78d8e73520a136d760f0a8905f7c59.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 146/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0091_jpg.rf.8d3f1963e87f206c9ce3253cc05031b6.jpg: 384x640 20 kentangs, 11.4ms\n",
+ "image 147/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0116_jpg.rf.f0c68edbcaa5012f08852aaf1dafd268.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 148/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0046_jpg.rf.ad0825cefc9ce373244f53e0f7eee021.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 149/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0059_jpg.rf.967bba947479e93ac9f78799bfd46e3b.jpg: 384x640 20 kentangs, 11.4ms\n",
+ "image 150/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0070_jpg.rf.e3c29179b81e4f3aca8042c5c163b569.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 151/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0030_jpg.rf.e59757aec26cd62350cb8ed978be2a4b.jpg: 384x640 24 kentangs, 11.4ms\n",
+ "image 152/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0037_jpg.rf.75d12942063b579c9ef39a8ece093fec.jpg: 384x640 23 kentangs, 12.4ms\n",
+ "image 153/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0045_jpg.rf.d3e56945a1cd21ec7a6337c59b2842b1.jpg: 384x640 26 kentangs, 18.2ms\n",
+ "image 154/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0022_jpg.rf.dd3b01cdd0c575674f640fb3be62c053.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 155/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0028_jpg.rf.a4ab63ae0d84a7caf6821f03eac7a2d5.jpg: 384x640 16 kentangs, 11.4ms\n",
+ "image 156/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0033_jpg.rf.8e5ecec035558a40e969c7cc300b5184.jpg: 384x640 23 kentangs, 11.4ms\n",
+ "image 157/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0083_jpg.rf.8d18fbada24b45e3b552db2d2a8deda3.jpg: 384x640 22 kentangs, 11.4ms\n",
+ "image 158/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0113_jpg.rf.1e19874bfe3e746db59c6439f424dcaf.jpg: 384x640 23 kentangs, 11.4ms\n",
+ "image 159/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0137_jpg.rf.960f0bb36586da4a6381438703b9e79b.jpg: 384x640 20 kentangs, 11.4ms\n",
+ "image 160/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0059_jpg.rf.5be4bdc8cdab718417f1d41430d14d10.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 161/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0071_jpg.rf.b312b0d184b90e037e850f2efdd0ad24.jpg: 384x640 17 kentangs, 11.3ms\n",
+ "image 162/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0085_jpg.rf.d7a4a4ac9f84c4d9a68c2c40a5e1a8d5.jpg: 384x640 24 kentangs, 11.6ms\n",
+ "image 163/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0030_jpg.rf.3889a66fd378201754435c7100b4ce28.jpg: 384x640 12 kentangs, 11.4ms\n",
+ "image 164/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0039_jpg.rf.d783b43903a7e65e9366b035a3ffb1ab.jpg: 384x640 18 kentangs, 11.4ms\n",
+ "image 165/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0051_jpg.rf.8fc46e32f291ccc8c6a7676cbf2f8590.jpg: 384x640 25 kentangs, 11.4ms\n",
+ "image 166/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0016_jpg.rf.9c4b74e8da415a646a563784851a1b8f.jpg: 384x640 14 kentangs, 11.3ms\n",
+ "image 167/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0022_jpg.rf.ece1f9c0f378c65e908f8cc9231e561a.jpg: 384x640 25 kentangs, 11.3ms\n",
+ "image 168/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0029_jpg.rf.772fdbd4f561dd7af144233b34d2bedd.jpg: 384x640 16 kentangs, 11.3ms\n",
+ "Speed: 0.5ms pre-process, 12.7ms inference, 1.8ms NMS per image at shape (1, 3, 640, 640)\n",
+ "Results saved to \u001b[1mruns/detect/exp2\u001b[0m\n"
+ ]
+ }
+ ],
+ "source": [
+ "!python detect.py --weights runs/train/exp8/weights/best.pt --img 640 --conf 0.1 --source {dataset.location}/test/images"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
+ },
+ "id": "fWvXEr0qgD-c",
+ "outputId": "0e6d24b9-04b8-4076-db3b-df63399bbb58"
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[34m\u001b[1mdetect: \u001b[0mweights=['runs/train/exp9/weights/best.pt'], source=/content/SMN-YOLOv5s/potato-counting-1/test/images, data=data/coco128.yaml, imgsz=[640, 640], conf_thres=0.1, iou_thres=0.45, max_det=1000, device=, view_img=False, save_txt=False, save_csv=False, save_conf=False, save_crop=False, nosave=False, classes=None, agnostic_nms=False, augment=False, visualize=False, update=False, project=runs/detect, name=exp, exist_ok=False, line_thickness=3, hide_labels=False, hide_conf=False, half=False, dnn=False, vid_stride=1\n",
+ "YOLOv5 🚀 704b81b1 Python-3.12.12 torch-2.9.0+cu128 CUDA:0 (Tesla T4, 14913MiB)\n",
+ "\n",
+ "Fusing layers... \n",
+ "YOLOv5s-c3se summary: 283 layers, 6735734 parameters, 0 gradients, 15.2 GFLOPs\n",
+ "image 1/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0001_jpg.rf.e6eb44d08cce17b3d731fc3289476049.jpg: 384x640 31 kentangs, 45.1ms\n",
+ "image 2/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0023_jpg.rf.a6688cb1ed6fcb550d42248530abba77.jpg: 384x640 33 kentangs, 12.8ms\n",
+ "image 3/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-25_0047_jpg.rf.f282e04cdbdf264ea2bca36739ab1c06.jpg: 384x640 34 kentangs, 12.8ms\n",
+ "image 4/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0010_jpg.rf.35a1f8e9d3b468697a346af8192c2f5e.jpg: 384x640 22 kentangs, 12.6ms\n",
+ "image 5/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0031_jpg.rf.b7aae0e45e4b6d345f3cb500c0b8351e.jpg: 384x640 34 kentangs, 14.2ms\n",
+ "image 6/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-5-1-_0043_jpg.rf.2bc115567701b6290beeb107a92dd14c.jpg: 384x640 24 kentangs, 12.9ms\n",
+ "image 7/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0001_jpg.rf.63cc7c52e36253d92748ebee7d3a2b74.jpg: 384x640 32 kentangs, 12.5ms\n",
+ "image 8/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0007_jpg.rf.c16cf84c451aa0637489640658bf371f.jpg: 384x640 26 kentangs, 13.8ms\n",
+ "image 9/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_0-75_0016_jpg.rf.8a239cd42e4c9a09a2169bc0bde1cdd8.jpg: 384x640 30 kentangs, 12.4ms\n",
+ "image 10/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0005_jpg.rf.cc17489b232716d28a31f640ddfa4500.jpg: 384x640 35 kentangs, 12.9ms\n",
+ "image 11/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0008_jpg.rf.6ea395755fb36e97300a0f0a7bf7b104.jpg: 384x640 30 kentangs, 12.6ms\n",
+ "image 12/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_100_1_0017_jpg.rf.ae58af19aeaf53c3fb0d07f279817503.jpg: 384x640 28 kentangs, 12.4ms\n",
+ "image 13/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0001_jpg.rf.24f3bc14c84e165983b169281c29dca9.jpg: 384x640 21 kentangs, 12.7ms\n",
+ "image 14/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0032_jpg.rf.187dfc82c453ef2df043174092c71b03.jpg: 384x640 34 kentangs, 12.9ms\n",
+ "image 15/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-25_0052_jpg.rf.96d8f2f440bf33b3a122503e42615bcc.jpg: 384x640 29 kentangs, 13.2ms\n",
+ "image 16/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0017_jpg.rf.80aa1a2ced3a3b47cc46b6b7591bd8ae.jpg: 384x640 19 kentangs, 12.6ms\n",
+ "image 17/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0047_jpg.rf.b342f6f011ad9f8944575c18b4f95d6c.jpg: 384x640 29 kentangs, 12.3ms\n",
+ "image 18/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-5-1-_0059_jpg.rf.58532654034538612d351cb84767febc.jpg: 384x640 32 kentangs, 19.4ms\n",
+ "image 19/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0001_jpg.rf.e933754d7f74d3773738a2d1b9596b0b.jpg: 384x640 30 kentangs, 12.7ms\n",
+ "image 20/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0017_jpg.rf.08fc856c440f010fcf5741f7e0d3dcb8.jpg: 384x640 44 kentangs, 12.8ms\n",
+ "image 21/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_0-75_0025_jpg.rf.e6e55cf6299ee807fc54126439fec673.jpg: 384x640 26 kentangs, 12.6ms\n",
+ "image 22/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0001_jpg.rf.47189811dc38f844b1160d601fb1f001.jpg: 384x640 20 kentangs, 12.7ms\n",
+ "image 23/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0014_jpg.rf.96ec68bb5214bea404854664b213c188.jpg: 384x640 32 kentangs, 12.6ms\n",
+ "image 24/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_110_1_0022_jpg.rf.de36633df84910b5560f799d1b05f4b7.jpg: 384x640 39 kentangs, 12.5ms\n",
+ "image 25/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0001_jpg.rf.22472ee39e65a19424b0ee6ac030a6c7.jpg: 384x640 38 kentangs, 12.9ms\n",
+ "image 26/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0029_jpg.rf.78009df3407cf93c18bc4948cdfae67a.jpg: 384x640 38 kentangs, 12.9ms\n",
+ "image 27/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-25_0065_jpg.rf.547cb80dec5b73ee4e10bd51aa4b11c3.jpg: 384x640 57 kentangs, 12.4ms\n",
+ "image 28/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0001_jpg.rf.9b8190377fa845ed3e86cc390262b71f.jpg: 384x640 38 kentangs, 12.7ms\n",
+ "image 29/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0014_jpg.rf.7a8899f462ad21554ae9aa465f0713d1.jpg: 384x640 47 kentangs, 14.5ms\n",
+ "image 30/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-5_0029_jpg.rf.8326b0175ea922cd5282c7b5add376a3.jpg: 384x640 57 kentangs, 12.5ms\n",
+ "image 31/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0001_jpg.rf.5e3a33a8e14ef2fe0fe376c4cd718b71.jpg: 384x640 44 kentangs, 12.3ms\n",
+ "image 32/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0012_jpg.rf.0bc15ed35586a033e71c574a2e5b7690.jpg: 384x640 48 kentangs, 12.3ms\n",
+ "image 33/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_0-75-2-_0022_jpg.rf.fbd6b3da05f9790c6ff1522aba7ce405.jpg: 384x640 54 kentangs, 12.3ms\n",
+ "image 34/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0001_jpg.rf.a36cca51da3e045a5d436c680fb1d6fe.jpg: 384x640 41 kentangs, 12.5ms\n",
+ "image 35/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0008_jpg.rf.e880bd0675d40bfa7abad7da3eef31c5.jpg: 384x640 55 kentangs, 12.8ms\n",
+ "image 36/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_120_1-2-_0014_jpg.rf.f454b03d7e5f068e38947195745f8630.jpg: 384x640 45 kentangs, 13.2ms\n",
+ "image 37/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0001_jpg.rf.c0c5007b6b7d9ee70783e1a0c5f819e5.jpg: 384x640 58 kentangs, 12.6ms\n",
+ "image 38/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0002_jpg.rf.3d4763435fff98950bf57ba19c7887c7.jpg: 384x640 61 kentangs, 12.6ms\n",
+ "image 39/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-25_0029_jpg.rf.8d29c35541b05ed34b26eae788a76ab7.jpg: 384x640 82 kentangs, 16.9ms\n",
+ "image 40/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0001_jpg.rf.a2530851cd2252912350773d298442a5.jpg: 384x640 55 kentangs, 12.8ms\n",
+ "image 41/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0015_jpg.rf.fe8e121c52e8fac05a0b1088d209485f.jpg: 384x640 61 kentangs, 12.5ms\n",
+ "image 42/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-5-2-_0029_jpg.rf.476d1c69ba2dc4eb007e2c62da58cd54.jpg: 384x640 62 kentangs, 14.3ms\n",
+ "image 43/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0001_jpg.rf.98ae4a736897aa564504db7cc5a0ec59.jpg: 384x640 52 kentangs, 12.7ms\n",
+ "image 44/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0009_jpg.rf.c9d75f53eaf49b30297ae8cbf9baa2e7.jpg: 384x640 79 kentangs, 16.2ms\n",
+ "image 45/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_0-75_0020_jpg.rf.d5c9abb1d4b51cac15183929d5131d20.jpg: 384x640 64 kentangs, 12.5ms\n",
+ "image 46/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0001_jpg.rf.718d062c0dd51d19b14541393321ce13.jpg: 384x640 72 kentangs, 12.6ms\n",
+ "image 47/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0002_jpg.rf.534cf079959a749879b47c3a77b361ab.jpg: 384x640 88 kentangs, 12.6ms\n",
+ "image 48/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_130_1_0011_jpg.rf.01560dd5f5101dda2394ba8a7bf51259.jpg: 384x640 73 kentangs, 12.5ms\n",
+ "image 49/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0001_jpg.rf.58ff164b3e4c73957574ddc54cfc3c40.jpg: 384x640 70 kentangs, 14.5ms\n",
+ "image 50/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0002_jpg.rf.48bb97033e272225e5aff17d313b92c9.jpg: 384x640 67 kentangs, 14.2ms\n",
+ "image 51/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-25_0007_jpg.rf.d1d050714f5502b782f6f64a2589e9e6.jpg: 384x640 60 kentangs, 12.9ms\n",
+ "image 52/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0001_jpg.rf.888eb1919b58cb161646b083ede20ab5.jpg: 384x640 70 kentangs, 12.8ms\n",
+ "image 53/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0002_jpg.rf.6c73fb7ed7df2f0e95370eeba3a739db.jpg: 384x640 75 kentangs, 14.1ms\n",
+ "image 54/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-5_0011_jpg.rf.5e3ee4f3a24b1fdabf2e83f8d7b2fbe7.jpg: 384x640 69 kentangs, 12.7ms\n",
+ "image 55/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0001_jpg.rf.4633e5d4ffb7c71d0a86fbe1208ce550.jpg: 384x640 72 kentangs, 12.4ms\n",
+ "image 56/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0003_jpg.rf.7d61297ca41f2fb9b3255eb1f92b7856.jpg: 384x640 67 kentangs, 12.5ms\n",
+ "image 57/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_0-75-2-_0007_jpg.rf.90e0fe8c043d0c691777d56aba2b5d5f.jpg: 384x640 73 kentangs, 12.1ms\n",
+ "image 58/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0001_jpg.rf.4f9f1471a246bdec09bc88f7160801a9.jpg: 384x640 80 kentangs, 12.3ms\n",
+ "image 59/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0005_jpg.rf.f787616b18864a6d9e6ac4dd5f1038cd.jpg: 384x640 66 kentangs, 13.5ms\n",
+ "image 60/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_140_1_0008_jpg.rf.4bee184d41d506c303a4635399e9736a.jpg: 384x640 61 kentangs, 12.4ms\n",
+ "image 61/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0056_jpg.rf.63f37af9fbda63f5e08474bca7d7dbc8.jpg: 384x640 13 kentangs, 12.0ms\n",
+ "image 62/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0081_jpg.rf.ddfdd4e3dbb22ecc994ca9a60b8e388e.jpg: 384x640 16 kentangs, 12.0ms\n",
+ "image 63/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-25_0101_jpg.rf.92a42347878dcb1b39cd50c65c24a129.jpg: 384x640 25 kentangs, 12.7ms\n",
+ "image 64/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0001_jpg.rf.3842ba6d063f90dc9a85ab6b24813efd.jpg: 384x640 14 kentangs, 12.4ms\n",
+ "image 65/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0035_jpg.rf.6f65aa3a8d2345817abd6ed498a384ac.jpg: 384x640 27 kentangs, 12.6ms\n",
+ "image 66/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-5_0050_jpg.rf.39437cdbfaa71da62a0771614e6a6c81.jpg: 384x640 28 kentangs, 13.2ms\n",
+ "image 67/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0018_jpg.rf.eeeab9cf18c348a22fd63ffc8f19d30e.jpg: 384x640 17 kentangs, 12.5ms\n",
+ "image 68/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0027_jpg.rf.8cabba09f2708f132c69eedb253a72ac.jpg: 384x640 24 kentangs, 12.0ms\n",
+ "image 69/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_0-75-1-_0033_jpg.rf.e356d17d51ca9a1b0d129926014ba76a.jpg: 384x640 22 kentangs, 12.2ms\n",
+ "image 70/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0013_jpg.rf.1b961001171c343faf0a1c87b72e847c.jpg: 384x640 17 kentangs, 12.0ms\n",
+ "image 71/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0019_jpg.rf.7b5ec74fc10e34c4b4797659fc52d3df.jpg: 384x640 24 kentangs, 21.7ms\n",
+ "image 72/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_80_1_0024_jpg.rf.b8de672a3ac6c5bfa02f8f5734a6c599.jpg: 384x640 20 kentangs, 12.4ms\n",
+ "image 73/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0001_jpg.rf.36524bb9c12dcba5ffbfa7b55dd24f16.jpg: 384x640 14 kentangs, 21.0ms\n",
+ "image 74/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0023_jpg.rf.9eeebf3d949a198242dfa9229075fb31.jpg: 384x640 19 kentangs, 18.2ms\n",
+ "image 75/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-25_0051_jpg.rf.7b8ea41b59cc9299a4fb50da349d15ef.jpg: 384x640 23 kentangs, 15.9ms\n",
+ "image 76/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0008_jpg.rf.a88edd5deae76098a0110aff77a5e976.jpg: 384x640 13 kentangs, 16.7ms\n",
+ "image 77/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0032_jpg.rf.9a690255b263410ba2fe9bc41795620b.jpg: 384x640 18 kentangs, 16.5ms\n",
+ "image 78/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-5_0046_jpg.rf.31eba01c47163680425a900a539b7568.jpg: 384x640 23 kentangs, 21.1ms\n",
+ "image 79/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0001_jpg.rf.98ce7380370eb6ce2556602538f1523b.jpg: 384x640 15 kentangs, 19.6ms\n",
+ "image 80/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0024_jpg.rf.55c18c32956cf051d11dc8ab0be27653.jpg: 384x640 19 kentangs, 16.6ms\n",
+ "image 81/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_0-75-1-_0032_jpg.rf.fe81ad2d1ee9c03ce41c833d70c44f13.jpg: 384x640 25 kentangs, 16.6ms\n",
+ "image 82/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0008_jpg.rf.943641cc10217c71f4ebc9bff5db8ca5.jpg: 384x640 16 kentangs, 17.5ms\n",
+ "image 83/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0016_jpg.rf.1c87322cf1fb4ffcca842908afc4fe63.jpg: 384x640 25 kentangs, 16.9ms\n",
+ "image 84/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/80_90_1_0022_jpg.rf.1f49bdbfa4aae29d26f531068c5c6709.jpg: 384x640 21 kentangs, 16.8ms\n",
+ "image 85/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0053_jpg.rf.f6f69f98c11804c9dab6bc9847ba5328.jpg: 384x640 10 kentangs, 17.4ms\n",
+ "image 86/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0074_jpg.rf.f2823bb1b7a757c96204e8d6c5475e44.jpg: 384x640 18 kentangs, 15.7ms\n",
+ "image 87/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-25_0093_jpg.rf.f739fcf09ed1d7aef061f437c2d39515.jpg: 384x640 20 kentangs, 18.7ms\n",
+ "image 88/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0056_jpg.rf.81c87799f88a9590b840dea0b1932aa5.jpg: 384x640 11 kentangs, 21.2ms\n",
+ "image 89/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0069_jpg.rf.a655a0ec3dc5000688d69d0da1bca325.jpg: 384x640 16 kentangs, 15.9ms\n",
+ "image 90/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-5_0080_jpg.rf.0e325c0ced8268fdb2e517da918f5873.jpg: 384x640 17 kentangs, 15.9ms\n",
+ "image 91/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0035_jpg.rf.114e05c12b9a747d3472cd9d25cbc16c.jpg: 384x640 12 kentangs, 16.1ms\n",
+ "image 92/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0043_jpg.rf.4176dfb24bdd00ba9aa142df52b2e07b.jpg: 384x640 17 kentangs, 16.1ms\n",
+ "image 93/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_0-75_0047_jpg.rf.d13bca82bc2569f80878024d67c366cc.jpg: 384x640 21 kentangs, 21.4ms\n",
+ "image 94/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0025_jpg.rf.e9d0aaa28b37b0257910b4e35c86b442.jpg: 384x640 13 kentangs, 22.4ms\n",
+ "image 95/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0030_jpg.rf.381ae89c4d4d21b271e99cc042e28dcf.jpg: 384x640 21 kentangs, 18.8ms\n",
+ "image 96/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_100_1_0036_jpg.rf.769c79e43290d3709ebcb3f3a01127c8.jpg: 384x640 17 kentangs, 17.3ms\n",
+ "image 97/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0050_jpg.rf.5e013e1743201317e3f6e21e659e76aa.jpg: 384x640 21 kentangs, 18.5ms\n",
+ "image 98/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0074_jpg.rf.f519fc0223ba45bfc340dc5cf09cd653.jpg: 384x640 18 kentangs, 22.7ms\n",
+ "image 99/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-25_0098_jpg.rf.84aab28cb6c37d4c7d91466c72cb718d.jpg: 384x640 23 kentangs, 20.9ms\n",
+ "image 100/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0029_jpg.rf.5b1742cad26f047f63fb2133f63967d7.jpg: 384x640 12 kentangs, 34.8ms\n",
+ "image 101/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0039_jpg.rf.92e94b8b19036a1b288614d5cca716a4.jpg: 384x640 17 kentangs, 25.7ms\n",
+ "image 102/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-5_0050_jpg.rf.6471950e6b87e95fd28a5d6f09ace411.jpg: 384x640 18 kentangs, 20.6ms\n",
+ "image 103/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0035_jpg.rf.d6a185c06cfeaa717458b04989a51965.jpg: 384x640 18 kentangs, 22.6ms\n",
+ "image 104/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0044_jpg.rf.34be41c7033fa5a5da9958ae03aeee7c.jpg: 384x640 18 kentangs, 23.4ms\n",
+ "image 105/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_0-75-1-_0050_jpg.rf.1f32892a4daacb0e4c9d8385c1afc187.jpg: 384x640 26 kentangs, 12.7ms\n",
+ "image 106/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0032_jpg.rf.b2b55fb719381a371a41cadaae953d95.jpg: 384x640 16 kentangs, 12.7ms\n",
+ "image 107/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0038_jpg.rf.f16a2a5fc14bff6b1e9dc35e42799db5.jpg: 384x640 20 kentangs, 12.4ms\n",
+ "image 108/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_110_1-3-_0044_jpg.rf.3eab04f85e2cc43c561dd1cd91aea91b.jpg: 384x640 20 kentangs, 13.7ms\n",
+ "image 109/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0068_jpg.rf.872322922e3d2f173fe6c229d2083907.jpg: 384x640 27 kentangs, 12.6ms\n",
+ "image 110/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0092_jpg.rf.9857704f117735beb7e442a3291745ca.jpg: 384x640 36 kentangs, 16.9ms\n",
+ "image 111/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-25_0112_jpg.rf.2f002108d8de825e3f21dc2af69f00f9.jpg: 384x640 50 kentangs, 12.5ms\n",
+ "image 112/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0033_jpg.rf.72dcd9e8062dca13197ed1f815854257.jpg: 384x640 31 kentangs, 12.6ms\n",
+ "image 113/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0047_jpg.rf.2fc52335e3175f9ace78a5c33bc13ecc.jpg: 384x640 33 kentangs, 12.3ms\n",
+ "image 114/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-5_0059_jpg.rf.4982cc7d5468ad58f2a908ef3d64178c.jpg: 384x640 48 kentangs, 13.0ms\n",
+ "image 115/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0039_jpg.rf.72f4b05993a9a1f836691f115212840f.jpg: 384x640 43 kentangs, 13.0ms\n",
+ "image 116/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0047_jpg.rf.fc9714fbe7f36705c73f64ca6bd01477.jpg: 384x640 36 kentangs, 13.1ms\n",
+ "image 117/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_0-75_0053_jpg.rf.7ff7e49dbc70cc636316005049ea0adc.jpg: 384x640 42 kentangs, 12.6ms\n",
+ "image 118/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0029_jpg.rf.350222b73536cd1b2fe00bb36046a311.jpg: 384x640 27 kentangs, 12.7ms\n",
+ "image 119/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0035_jpg.rf.3cc980ea61f7137aa2f0864fd7505fd1.jpg: 384x640 37 kentangs, 13.7ms\n",
+ "image 120/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_120_1_0041_jpg.rf.68f7c106dafe1f8965aad9045b830fbb.jpg: 384x640 43 kentangs, 15.6ms\n",
+ "image 121/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0071_jpg.rf.2908d238dd69daefaab4eda8922bb6b9.jpg: 384x640 22 kentangs, 14.7ms\n",
+ "image 122/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0092_jpg.rf.c7efb5b9aee29d3f54338d1a62b85947.jpg: 384x640 42 kentangs, 15.4ms\n",
+ "image 123/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-25_0116_jpg.rf.0ea8d758b4487b10ac3db3f34298e8ed.jpg: 384x640 62 kentangs, 15.4ms\n",
+ "image 124/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0041_jpg.rf.ec03e5f5629a2cc919746550bed78b88.jpg: 384x640 21 kentangs, 13.2ms\n",
+ "image 125/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0053_jpg.rf.f2ee934e099d8c96f0de51fd8748e8da.jpg: 384x640 31 kentangs, 12.7ms\n",
+ "image 126/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-5_0062_jpg.rf.6a398a5ffa95d9cae8262c03f14725b3.jpg: 384x640 47 kentangs, 13.2ms\n",
+ "image 127/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0035_jpg.rf.a60af036b1819f722092f1b242b92166.jpg: 384x640 33 kentangs, 12.6ms\n",
+ "image 128/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0043_jpg.rf.d61187ec02ee553e097c4e166c2c299f.jpg: 384x640 53 kentangs, 17.4ms\n",
+ "image 129/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_0-75_0048_jpg.rf.384c68e485e38182b8e198fec264642c.jpg: 384x640 68 kentangs, 12.1ms\n",
+ "image 130/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0029_jpg.rf.404b8444d4f73d54f2f0d93ad24ab43e.jpg: 384x640 40 kentangs, 15.8ms\n",
+ "image 131/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0035_jpg.rf.f3d49a3ed44bd006e728a519be02f2b9.jpg: 384x640 42 kentangs, 12.3ms\n",
+ "image 132/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_130_1_0039_jpg.rf.d7fbfde1e3e19ffadcf19da889cf8f42.jpg: 384x640 59 kentangs, 12.2ms\n",
+ "image 133/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0056_jpg.rf.9abe5ffdf392d2a05efd96f347fa29a9.jpg: 384x640 43 kentangs, 12.9ms\n",
+ "image 134/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0083_jpg.rf.9f3a500268fb067e985f5f35aa940c9b.jpg: 384x640 77 kentangs, 12.4ms\n",
+ "image 135/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-25_0098_jpg.rf.a09d7ec02f5652094cb1dc3ecea22bf7.jpg: 384x640 68 kentangs, 12.9ms\n",
+ "image 136/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0038_jpg.rf.ee399e884732f4da301b0a3b7b877a57.jpg: 384x640 55 kentangs, 13.9ms\n",
+ "image 137/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0050_jpg.rf.20e23ce8af79323596c5fb7969784dbb.jpg: 384x640 68 kentangs, 14.0ms\n",
+ "image 138/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-5_0062_jpg.rf.f4b8ded38a99c36d43c60bab45c5d4ae.jpg: 384x640 66 kentangs, 12.5ms\n",
+ "image 139/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0029_jpg.rf.424b4b0e34cb28623d1319e9cf69c0ad.jpg: 384x640 40 kentangs, 12.7ms\n",
+ "image 140/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0038_jpg.rf.10461adcfb3f35e5651305011a47c3fd.jpg: 384x640 52 kentangs, 19.1ms\n",
+ "image 141/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_0-75_0046_jpg.rf.7e48f6964de2f89bbff9bfd4561fa368.jpg: 384x640 67 kentangs, 12.4ms\n",
+ "image 142/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0029_jpg.rf.a3f318473e0a3bf7332e3fa04adc33b8.jpg: 384x640 47 kentangs, 12.4ms\n",
+ "image 143/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0036_jpg.rf.420d68773ff2925f82219a432ef8deb3.jpg: 384x640 54 kentangs, 12.4ms\n",
+ "image 144/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_140_1_0041_jpg.rf.07c32656e48f2ed188366960ca84a1dc.jpg: 384x640 78 kentangs, 12.6ms\n",
+ "image 145/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0074_jpg.rf.6e78d8e73520a136d760f0a8905f7c59.jpg: 384x640 12 kentangs, 12.5ms\n",
+ "image 146/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0091_jpg.rf.8d3f1963e87f206c9ce3253cc05031b6.jpg: 384x640 20 kentangs, 12.4ms\n",
+ "image 147/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-25_0116_jpg.rf.f0c68edbcaa5012f08852aaf1dafd268.jpg: 384x640 23 kentangs, 13.1ms\n",
+ "image 148/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0046_jpg.rf.ad0825cefc9ce373244f53e0f7eee021.jpg: 384x640 11 kentangs, 12.8ms\n",
+ "image 149/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0059_jpg.rf.967bba947479e93ac9f78799bfd46e3b.jpg: 384x640 17 kentangs, 14.4ms\n",
+ "image 150/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-5_0070_jpg.rf.e3c29179b81e4f3aca8042c5c163b569.jpg: 384x640 15 kentangs, 12.6ms\n",
+ "image 151/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0030_jpg.rf.e59757aec26cd62350cb8ed978be2a4b.jpg: 384x640 18 kentangs, 13.1ms\n",
+ "image 152/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0037_jpg.rf.75d12942063b579c9ef39a8ece093fec.jpg: 384x640 23 kentangs, 12.2ms\n",
+ "image 153/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_0-75-1-_0045_jpg.rf.d3e56945a1cd21ec7a6337c59b2842b1.jpg: 384x640 30 kentangs, 12.4ms\n",
+ "image 154/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0022_jpg.rf.dd3b01cdd0c575674f640fb3be62c053.jpg: 384x640 11 kentangs, 12.4ms\n",
+ "image 155/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0028_jpg.rf.a4ab63ae0d84a7caf6821f03eac7a2d5.jpg: 384x640 19 kentangs, 12.4ms\n",
+ "image 156/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_80_1_0033_jpg.rf.8e5ecec035558a40e969c7cc300b5184.jpg: 384x640 18 kentangs, 12.7ms\n",
+ "image 157/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0083_jpg.rf.8d18fbada24b45e3b552db2d2a8deda3.jpg: 384x640 26 kentangs, 12.3ms\n",
+ "image 158/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0113_jpg.rf.1e19874bfe3e746db59c6439f424dcaf.jpg: 384x640 19 kentangs, 12.6ms\n",
+ "image 159/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-25_0137_jpg.rf.960f0bb36586da4a6381438703b9e79b.jpg: 384x640 17 kentangs, 12.3ms\n",
+ "image 160/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0059_jpg.rf.5be4bdc8cdab718417f1d41430d14d10.jpg: 384x640 15 kentangs, 15.8ms\n",
+ "image 161/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0071_jpg.rf.b312b0d184b90e037e850f2efdd0ad24.jpg: 384x640 19 kentangs, 12.5ms\n",
+ "image 162/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-5_0085_jpg.rf.d7a4a4ac9f84c4d9a68c2c40a5e1a8d5.jpg: 384x640 21 kentangs, 12.9ms\n",
+ "image 163/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0030_jpg.rf.3889a66fd378201754435c7100b4ce28.jpg: 384x640 11 kentangs, 12.6ms\n",
+ "image 164/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0039_jpg.rf.d783b43903a7e65e9366b035a3ffb1ab.jpg: 384x640 18 kentangs, 12.4ms\n",
+ "image 165/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_0-75_0051_jpg.rf.8fc46e32f291ccc8c6a7676cbf2f8590.jpg: 384x640 24 kentangs, 12.1ms\n",
+ "image 166/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0016_jpg.rf.9c4b74e8da415a646a563784851a1b8f.jpg: 384x640 12 kentangs, 15.9ms\n",
+ "image 167/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0022_jpg.rf.ece1f9c0f378c65e908f8cc9231e561a.jpg: 384x640 22 kentangs, 12.7ms\n",
+ "image 168/168 /content/SMN-YOLOv5s/potato-counting-1/test/images/90_90_1_0029_jpg.rf.772fdbd4f561dd7af144233b34d2bedd.jpg: 384x640 17 kentangs, 12.6ms\n",
+ "Speed: 0.5ms pre-process, 14.5ms inference, 1.7ms NMS per image at shape (1, 3, 640, 640)\n",
+ "Results saved to \u001b[1mruns/detect/exp3\u001b[0m\n"
+ ]
+ }
+ ],
+ "source": [
+ "!python detect.py --weights runs/train/exp9/weights/best.pt --img 640 --conf 0.1 --source {dataset.location}/test/images"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {
+ "id": "epN0BtjQr4JM"
+ },
+ "outputs": [],
+ "source": [
+ "from IPython.display import Image"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 816
+ },
+ "id": "X2Dl2pFlr4l9",
+ "outputId": "bc23766f-6690-41ad-e549-9dd543c181f0"
+ },
+ "outputs": [
+ {
+ "ename": "FileNotFoundError",
+ "evalue": "No such file or directory: '/kaggle/working/SMN-YOLOv5s/runs/train/exp8/confusion_matrix.png'",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_data_and_metadata\u001b[0;34m(self, always_both)\u001b[0m\n\u001b[1;32m 1299\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1300\u001b[0;31m \u001b[0mb64_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mb2a_base64\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ascii'\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 1301\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mTypeError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mTypeError\u001b[0m: a bytes-like object is required, not 'str'",
+ "\nDuring handling of the above exception, another exception occurred:\n",
+ "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/formatters.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, obj, include, exclude)\u001b[0m\n\u001b[1;32m 968\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 969\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mmethod\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 970\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0minclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0minclude\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mexclude\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mexclude\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 971\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 972\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_repr_mimebundle_\u001b[0;34m(self, include, exclude)\u001b[0m\n\u001b[1;32m 1288\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0membed\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1289\u001b[0m \u001b[0mmimetype\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_mimetype\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1290\u001b[0;31m \u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmetadata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data_and_metadata\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0malways_both\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\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 1291\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mmetadata\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1292\u001b[0m \u001b[0mmetadata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0mmimetype\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mmetadata\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_data_and_metadata\u001b[0;34m(self, always_both)\u001b[0m\n\u001b[1;32m 1300\u001b[0m \u001b[0mb64_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mb2a_base64\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ascii'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1301\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mTypeError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1302\u001b[0;31m raise FileNotFoundError(\n\u001b[0m\u001b[1;32m 1303\u001b[0m \"No such file or directory: '%s'\" % (self.data))\n\u001b[1;32m 1304\u001b[0m \u001b[0mmd\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mFileNotFoundError\u001b[0m: No such file or directory: '/kaggle/working/SMN-YOLOv5s/runs/train/exp8/confusion_matrix.png'"
+ ]
+ },
+ {
+ "ename": "FileNotFoundError",
+ "evalue": "No such file or directory: '/kaggle/working/SMN-YOLOv5s/runs/train/exp8/confusion_matrix.png'",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_data_and_metadata\u001b[0;34m(self, always_both)\u001b[0m\n\u001b[1;32m 1299\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1300\u001b[0;31m \u001b[0mb64_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mb2a_base64\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ascii'\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 1301\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mTypeError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mTypeError\u001b[0m: a bytes-like object is required, not 'str'",
+ "\nDuring handling of the above exception, another exception occurred:\n",
+ "\u001b[0;31mFileNotFoundError\u001b[0m Traceback (most recent call last)",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/formatters.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, obj)\u001b[0m\n\u001b[1;32m 343\u001b[0m \u001b[0mmethod\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_real_method\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mobj\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mprint_method\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 344\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mmethod\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 345\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m(\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 346\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 347\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_repr_png_\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1318\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_repr_png_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0membed\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mformat\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_FMT_PNG\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1320\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data_and_metadata\u001b[0m\u001b[0;34m(\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 1321\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1322\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_repr_jpeg_\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;32m/usr/local/lib/python3.12/dist-packages/IPython/core/display.py\u001b[0m in \u001b[0;36m_data_and_metadata\u001b[0;34m(self, always_both)\u001b[0m\n\u001b[1;32m 1300\u001b[0m \u001b[0mb64_data\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mb2a_base64\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'ascii'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1301\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mTypeError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1302\u001b[0;31m raise FileNotFoundError(\n\u001b[0m\u001b[1;32m 1303\u001b[0m \"No such file or directory: '%s'\" % (self.data))\n\u001b[1;32m 1304\u001b[0m \u001b[0mmd\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m{\u001b[0m\u001b[0;34m}\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
+ "\u001b[0;31mFileNotFoundError\u001b[0m: No such file or directory: '/kaggle/working/SMN-YOLOv5s/runs/train/exp8/confusion_matrix.png'"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": [
+ ""
+ ]
+ },
+ "execution_count": 23,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "Image(\"/kaggle/working/SMN-YOLOv5s/runs/train/exp8/confusion_matrix.png\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "pW41VmqBr9Du"
+ },
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "accelerator": "GPU",
+ "colab": {
+ "authorship_tag": "ABX9TyODci/IrsEqDNtNK1qO+UrK",
+ "gpuType": "T4",
+ "include_colab_link": true,
+ "provenance": []
+ },
+ "kernelspec": {
+ "display_name": "Python 3",
+ "name": "python3"
+ },
+ "language_info": {
+ "name": "python"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
\ No newline at end of file
diff --git a/detect.py b/detect.py
index 535e196fcd21..0fcfb881949c 100644
--- a/detect.py
+++ b/detect.py
@@ -72,8 +72,8 @@ def run(
source=ROOT / "data/images", # file/dir/URL/glob/screen/0(webcam)
data=ROOT / "data/coco128.yaml", # dataset.yaml path
imgsz=(640, 640), # inference size (height, width)
- conf_thres=0.25, # confidence threshold
- iou_thres=0.45, # NMS IOU threshold
+ conf_thres=0.3, # confidence threshold
+ iou_thres=0.1, # NMS IOU threshold
max_det=1000, # maximum detections per image
device="", # cuda device, i.e. 0 or 0,1,2,3 or cpu
view_img=False, # show results
diff --git a/models/common.py b/models/common.py
index 8bb9ca56d340..b5cfbbeae021 100644
--- a/models/common.py
+++ b/models/common.py
@@ -1109,3 +1109,137 @@ def forward(self, x):
if isinstance(x, list):
x = torch.cat(x, 1)
return self.linear(self.drop(self.pool(self.conv(x)).flatten(1)))
+
+
+class SE(nn.Module):
+ """Squeeze-and-Excitation (SE) block."""
+
+ def __init__(self, channels: int, reduction: int = 16):
+ super().__init__()
+ mid = max(1, channels // reduction)
+ self.avg_pool = nn.AdaptiveAvgPool2d(1)
+ self.fc = nn.Sequential(
+ nn.Linear(channels, mid, bias=False),
+ nn.ReLU(inplace=True),
+ nn.Linear(mid, channels, bias=False),
+ nn.Sigmoid(),
+ )
+
+ def forward(self, x):
+ b, c, _, _ = x.size()
+ y = self.avg_pool(x).view(b, c)
+ y = self.fc(y).view(b, c, 1, 1)
+ return x * y
+
+
+class SEBottleneck(nn.Module):
+ """Bottleneck + SE. Aman dipakai di dalam C3SE karena biasanya c1 == c2 (hidden channels). Signature mengikuti
+ Bottleneck: (c1, c2, shortcut, g, e).
+ """
+
+ def __init__(self, c1, c2, shortcut=True, g=1, e=0.5, se_reduction=16):
+ super().__init__()
+ c_ = int(c2 * e)
+ self.cv1 = Conv(c1, c_, 1, 1)
+ self.cv2 = Conv(c_, c2, 3, 1, g=g)
+ self.add = shortcut and c1 == c2
+ self.se = SE(c2, reduction=se_reduction)
+
+ def forward(self, x):
+ y = self.cv2(self.cv1(x))
+ y = self.se(y)
+ return x + y if self.add else y
+
+
+class C3SE(C3):
+ """C3 module with SEBottleneck() inside (drop-in replacement for C3)."""
+
+ def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5, se_reduction=16):
+ super().__init__(c1, c2, n, shortcut, g, e)
+ c_ = int(c2 * e)
+ self.m = nn.Sequential(*(SEBottleneck(c_, c_, shortcut, g, e=1.0, se_reduction=se_reduction) for _ in range(n)))
+
+
+class ChannelAttention(nn.Module):
+ """CBAM Channel Attention."""
+
+ def __init__(self, in_planes: int, ratio: int = 16):
+ super().__init__()
+ mid = max(1, in_planes // ratio)
+ self.avg_pool = nn.AdaptiveAvgPool2d(1)
+ self.max_pool = nn.AdaptiveMaxPool2d(1)
+ self.f1 = nn.Conv2d(in_planes, mid, 1, bias=False)
+ self.relu = nn.ReLU(inplace=True)
+ self.f2 = nn.Conv2d(mid, in_planes, 1, bias=False)
+ self.sigmoid = nn.Sigmoid()
+
+ def forward(self, x):
+ avg_out = self.f2(self.relu(self.f1(self.avg_pool(x))))
+ max_out = self.f2(self.relu(self.f1(self.max_pool(x))))
+ return self.sigmoid(avg_out + max_out)
+
+
+class SpatialAttention(nn.Module):
+ """CBAM Spatial Attention."""
+
+ def __init__(self, kernel_size: int = 7):
+ super().__init__()
+ assert kernel_size in (3, 7), "kernel_size must be 3 or 7"
+ padding = 3 if kernel_size == 7 else 1
+ self.conv = nn.Conv2d(2, 1, kernel_size, padding=padding, bias=False)
+ self.sigmoid = nn.Sigmoid()
+
+ def forward(self, x):
+ avg_out = torch.mean(x, dim=1, keepdim=True)
+ max_out, _ = torch.max(x, dim=1, keepdim=True)
+ x = torch.cat([avg_out, max_out], dim=1)
+ x = self.conv(x)
+ return self.sigmoid(x)
+
+
+class CBAM(nn.Module):
+ """CBAM block as a standalone layer (can be inserted in YAML). Signature dibuat kompatibel dengan pola YOLOv5: (c1,
+ c2, ...) Umumnya dipakai dengan c1 == c2.
+ """
+
+ def __init__(self, c1, c2=None, ratio=16, kernel_size=7):
+ super().__init__()
+ c2 = c1 if c2 is None else c2
+ assert c1 == c2, "CBAM layer expects c1 == c2 (no channel change)."
+ self.ca = ChannelAttention(c1, ratio=ratio)
+ self.sa = SpatialAttention(kernel_size=kernel_size)
+
+ def forward(self, x):
+ x = self.ca(x) * x
+ x = self.sa(x) * x
+ return x
+
+
+class CBAMBottleneck(nn.Module):
+ """Bottleneck + CBAM (used inside C3CBAM)."""
+
+ def __init__(self, c1, c2, shortcut=True, g=1, e=0.5, ratio=16, kernel_size=7):
+ super().__init__()
+ c_ = int(c2 * e)
+ self.cv1 = Conv(c1, c_, 1, 1)
+ self.cv2 = Conv(c_, c2, 3, 1, g=g)
+ self.add = shortcut and c1 == c2
+ self.ca = ChannelAttention(c2, ratio=ratio)
+ self.sa = SpatialAttention(kernel_size=kernel_size)
+
+ def forward(self, x):
+ y = self.cv2(self.cv1(x))
+ y = self.ca(y) * y
+ y = self.sa(y) * y
+ return x + y if self.add else y
+
+
+class C3CBAM(C3):
+ """C3 module with CBAMBottleneck() inside (drop-in replacement for C3)."""
+
+ def __init__(self, c1, c2, n=1, shortcut=True, g=1, e=0.5, ratio=16, kernel_size=7):
+ super().__init__(c1, c2, n, shortcut, g, e)
+ c_ = int(c2 * e)
+ self.m = nn.Sequential(
+ *(CBAMBottleneck(c_, c_, shortcut, g, e=1.0, ratio=ratio, kernel_size=kernel_size) for _ in range(n))
+ )
diff --git a/models/yolo.py b/models/yolo.py
index 576e6a3621fe..820d9efc387e 100644
--- a/models/yolo.py
+++ b/models/yolo.py
@@ -27,14 +27,19 @@
from models.common import (
C3,
+ C3CBAM,
+ C3SE,
C3SPP,
C3TR,
+ CBAM,
+ SE,
SPP,
SPPF,
Bottleneck,
BottleneckCSP,
C3Ghost,
C3x,
+ CBAMBottleneck,
Classify,
Concat,
Contract,
@@ -48,6 +53,7 @@
GhostBottleneck,
GhostConv,
Proto,
+ SEBottleneck,
)
from models.experimental import MixConv2d
from utils.autoanchor import check_anchor_order
@@ -421,6 +427,12 @@ def parse_model(d, ch):
nn.ConvTranspose2d,
DWConvTranspose2d,
C3x,
+ SE,
+ SEBottleneck,
+ C3SE,
+ CBAM,
+ CBAMBottleneck,
+ C3CBAM,
}:
c1, c2 = ch[f], args[0]
if c2 != no: # if not output
diff --git a/models/yolov5s-c3se-backbone.yaml b/models/yolov5s-c3se-backbone.yaml
new file mode 100644
index 000000000000..6df23db41cdd
--- /dev/null
+++ b/models/yolov5s-c3se-backbone.yaml
@@ -0,0 +1,41 @@
+# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
+# Parameters
+nc: 1 # number of classes
+depth_multiple: 0.33 # model depth multiple
+width_multiple: 0.50 # layer channel multiple
+anchors:
+ - [10,13, 16,30, 33,23] # P3/8
+ - [30,61, 62,45, 59,119] # P4/16
+ - [116,90, 156,198, 373,326] # P5/32
+# YOLOv5 v6.0 backbone
+backbone:
+ # [from, number, module, args]
+ [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2
+ [-1, 1, Conv, [128, 3, 2]], # 1-P2/4
+ [-1, 3, C3SE, [128]],
+ [-1, 1, Conv, [256, 3, 2]], # 3-P3/8
+ [-1, 6, C3SE, [256]],
+ [-1, 1, Conv, [512, 3, 2]], # 5-P4/16
+ [-1, 9, C3SE, [512]],
+ [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32
+ [-1, 3, C3SE, [1024]],
+ [-1, 1, SPPF, [1024, 5]], # 9
+ ]
+# YOLOv5 v6.0 head
+head:
+ [[-1, 1, Conv, [512, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 6], 1, Concat, [1]], # cat backbone P4
+ [-1, 3, C3, [512, False]], # 13+1
+ [-1, 1, Conv, [256, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 4], 1, Concat, [1]], # cat backbone P3
+ [-1, 3, C3, [256, False]], # 17+1 (P3/8-small)
+ [-1, 1, Conv, [256, 3, 2]],
+ [[-1, 14], 1, Concat, [1]], # cat head P4
+ [-1, 3, C3, [512, False]], # 20+1 (P4/16-medium)
+ [-1, 1, Conv, [512, 3, 2]],
+ [[-1, 10], 1, Concat, [1]], # cat head P5
+ [-1, 3, C3, [1024, False]], # 23+1 (P5/32-large)
+ [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5)
+ ]
diff --git a/models/yolov5s-c3se.yaml b/models/yolov5s-c3se.yaml
new file mode 100644
index 000000000000..fd57e95d447c
--- /dev/null
+++ b/models/yolov5s-c3se.yaml
@@ -0,0 +1,41 @@
+# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
+# Parameters
+nc: 1 # number of classes
+depth_multiple: 0.33 # model depth multiple
+width_multiple: 0.50 # layer channel multiple
+anchors:
+ - [10,13, 16,30, 33,23] # P3/8
+ - [30,61, 62,45, 59,119] # P4/16
+ - [116,90, 156,198, 373,326] # P5/32
+# YOLOv5 v6.0 backbone
+backbone:
+ # [from, number, module, args]
+ [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2
+ [-1, 1, Conv, [128, 3, 2]], # 1-P2/4
+ [-1, 3, C3, [128]],
+ [-1, 1, Conv, [256, 3, 2]], # 3-P3/8
+ [-1, 6, C3, [256]],
+ [-1, 1, Conv, [512, 3, 2]], # 5-P4/16
+ [-1, 9, C3, [512]],
+ [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32
+ [-1, 3, C3SE, [1024]],
+ [-1, 1, SPPF, [1024, 5]], # 9
+ ]
+# YOLOv5 v6.0 head
+head:
+ [[-1, 1, Conv, [512, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 6], 1, Concat, [1]], # cat backbone P4
+ [-1, 3, C3, [512, False]], # 13+1
+ [-1, 1, Conv, [256, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 4], 1, Concat, [1]], # cat backbone P3
+ [-1, 3, C3, [256, False]], # 17+1 (P3/8-small)
+ [-1, 1, Conv, [256, 3, 2]],
+ [[-1, 14], 1, Concat, [1]], # cat head P4
+ [-1, 3, C3, [512, False]], # 20+1 (P4/16-medium)
+ [-1, 1, Conv, [512, 3, 2]],
+ [[-1, 10], 1, Concat, [1]], # cat head P5
+ [-1, 3, C3, [1024, False]], # 23+1 (P5/32-large)
+ [[17, 20, 23], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5)
+ ]
diff --git a/models/yolov5s-cbam.yaml b/models/yolov5s-cbam.yaml
new file mode 100644
index 000000000000..26bc71955324
--- /dev/null
+++ b/models/yolov5s-cbam.yaml
@@ -0,0 +1,42 @@
+# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
+# Parameters
+nc: 1 # number of classes
+depth_multiple: 0.33 # model depth multiple
+width_multiple: 0.50 # layer channel multiple
+anchors:
+ - [10,13, 16,30, 33,23] # P3/8
+ - [30,61, 62,45, 59,119] # P4/16
+ - [116,90, 156,198, 373,326] # P5/32
+# YOLOv5 v6.0 backbone
+backbone:
+ # [from, number, module, args]
+ [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2
+ [-1, 1, Conv, [128, 3, 2]], # 1-P2/4
+ [-1, 3, C3, [128]],
+ [-1, 1, Conv, [256, 3, 2]], # 3-P3/8
+ [-1, 6, C3, [256]],
+ [-1, 1, Conv, [512, 3, 2]], # 5-P4/16
+ [-1, 9, C3, [512]],
+ [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32
+ [-1, 3, C3, [1024]],
+ [-1, 1, CBAM, [1024]],
+ [-1, 1, SPPF, [1024, 5]], # 9+1
+ ]
+# YOLOv5 v6.0 head
+head:
+ [[-1, 1, Conv, [512, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 6], 1, Concat, [1]], # cat backbone P4
+ [-1, 3, C3, [512, False]], # 13+1
+ [-1, 1, Conv, [256, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 4], 1, Concat, [1]], # cat backbone P3
+ [-1, 3, C3, [256, False]], # 17+1 (P3/8-small)
+ [-1, 1, Conv, [256, 3, 2]],
+ [[-1, 15], 1, Concat, [1]], # cat head P4
+ [-1, 3, C3, [512, False]], # 20+1 (P4/16-medium)
+ [-1, 1, Conv, [512, 3, 2]],
+ [[-1, 11], 1, Concat, [1]], # cat head P5
+ [-1, 3, C3, [1024, False]], # 23+1 (P5/32-large)
+ [[18, 21, 24], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5)
+ ]
diff --git a/models/yolov5s-se.yaml b/models/yolov5s-se.yaml
new file mode 100644
index 000000000000..05bf91ec4867
--- /dev/null
+++ b/models/yolov5s-se.yaml
@@ -0,0 +1,42 @@
+# YOLOv5 🚀 by Ultralytics, GPL-3.0 license
+# Parameters
+nc: 1 # number of classes
+depth_multiple: 0.33 # model depth multiple
+width_multiple: 0.50 # layer channel multiple
+anchors:
+ - [10,13, 16,30, 33,23] # P3/8
+ - [30,61, 62,45, 59,119] # P4/16
+ - [116,90, 156,198, 373,326] # P5/32
+# YOLOv5 v6.0 backbone
+backbone:
+ # [from, number, module, args]
+ [[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2
+ [-1, 1, Conv, [128, 3, 2]], # 1-P2/4
+ [-1, 3, C3, [128]],
+ [-1, 1, Conv, [256, 3, 2]], # 3-P3/8
+ [-1, 6, C3, [256]],
+ [-1, 1, Conv, [512, 3, 2]], # 5-P4/16
+ [-1, 9, C3, [512]],
+ [-1, 1, Conv, [1024, 3, 2]], # 7-P5/32
+ [-1, 3, C3, [1024]],
+ [-1, 1, SE, [1024]],
+ [-1, 1, SPPF, [1024, 5]], # 9+1
+ ]
+# YOLOv5 v6.0 head
+head:
+ [[-1, 1, Conv, [512, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 6], 1, Concat, [1]], # cat backbone P4
+ [-1, 3, C3, [512, False]], # 13+1
+ [-1, 1, Conv, [256, 1, 1]],
+ [-1, 1, nn.Upsample, [None, 2, 'nearest']],
+ [[-1, 4], 1, Concat, [1]], # cat backbone P3
+ [-1, 3, C3, [256, False]], # 17+1 (P3/8-small)
+ [-1, 1, Conv, [256, 3, 2]],
+ [[-1, 15], 1, Concat, [1]], # cat head P4
+ [-1, 3, C3, [512, False]], # 20+1 (P4/16-medium)
+ [-1, 1, Conv, [512, 3, 2]],
+ [[-1, 11], 1, Concat, [1]], # cat head P5
+ [-1, 3, C3, [1024, False]], # 23+1 (P5/32-large)
+ [[18, 21, 24], 1, Detect, [nc, anchors]], # Detect(P3, P4, P5)
+ ]
diff --git a/utils/metrics.py b/utils/metrics.py
index e9b266e12a5f..974165a9525b 100644
--- a/utils/metrics.py
+++ b/utils/metrics.py
@@ -197,7 +197,7 @@ def tp_fp(self):
return tp[:-1], fp[:-1] # remove background class
@TryExcept("WARNING ⚠️ ConfusionMatrix plot failure")
- def plot(self, normalize=True, save_dir="", names=()):
+ def plot(self, normalize=False, save_dir="", names=()):
"""Plots confusion matrix using seaborn, optional normalization; can save plot to specified directory."""
import seaborn as sn
diff --git a/utils/plots.py b/utils/plots.py
index 9324c5577446..cac6d19819ed 100644
--- a/utils/plots.py
+++ b/utils/plots.py
@@ -208,7 +208,7 @@ def plot_images(images, targets, paths=None, fname="images.jpg", names=None):
color = colors(cls)
cls = names[cls] if names else cls
if labels or conf[j] > 0.25: # 0.25 conf thresh
- label = f"{cls}" if labels else f"{cls} {conf[j]:.1f}"
+ label = f"{cls}" if labels else f"{cls} {conf[j]:.2f}"
annotator.box_label(box, label, color=color)
annotator.im.save(fname) # save
diff --git a/val.py b/val.py
index acbf687e9aab..50def20ab410 100644
--- a/val.py
+++ b/val.py
@@ -5,18 +5,13 @@
Usage:
$ python val.py --weights yolov5s.pt --data coco128.yaml --img 640
-Usage - formats:
- $ python val.py --weights yolov5s.pt # PyTorch
- yolov5s.torchscript # TorchScript
- yolov5s.onnx # ONNX Runtime or OpenCV DNN with --dnn
- yolov5s_openvino_model # OpenVINO
- yolov5s.engine # TensorRT
- yolov5s.mlpackage # CoreML (macOS-only)
- yolov5s_saved_model # TensorFlow SavedModel
- yolov5s.pb # TensorFlow GraphDef
- yolov5s.tflite # TensorFlow Lite
- yolov5s_edgetpu.tflite # TensorFlow Edge TPU
- yolov5s_paddle_model # PaddlePaddle
+This revised version adds:
+ --save-per-image Save 1 visualization JPG per image (pred + labels)
+ --save-per-image-limit Limit number of images saved (default -1 = all)
+
+Outputs (when --save-per-image is used):
+ runs/val/exp*/per_image/pred/.jpg
+ runs/val/exp*/per_image/labels/.jpg
"""
import argparse
@@ -62,29 +57,7 @@
def save_one_txt(predn, save_conf, shape, file):
- """Saves one detection result to a txt file in normalized xywh format, optionally including confidence.
-
- Args:
- predn (torch.Tensor): Predicted bounding boxes and associated confidence scores and classes in xyxy format,
- tensor of shape (N, 6) where N is the number of detections.
- save_conf (bool): If True, saves the confidence scores along with the bounding box coordinates.
- shape (tuple): Shape of the original image as (height, width).
- file (str | Path): File path where the result will be saved.
-
- Returns:
- None
-
- Examples:
- ```python
- predn = torch.tensor([[10, 20, 30, 40, 0.9, 1]]) # example prediction
- save_one_txt(predn, save_conf=True, shape=(640, 480), file="output.txt")
- ```
-
- Notes:
- The xyxy bounding box format represents the coordinates (xmin, ymin, xmax, ymax).
- The xywh format represents the coordinates (center_x, center_y, width, height) and is normalized by the width and
- height of the image.
- """
+ """Saves one detection result to a txt file in normalized xywh format, optionally including confidence."""
gn = torch.tensor(shape)[[1, 0, 1, 0]] # normalization gain whwh
for *xyxy, conf, cls in predn.tolist():
xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh
@@ -94,37 +67,7 @@ def save_one_txt(predn, save_conf, shape, file):
def save_one_json(predn, jdict, path, class_map):
- """Saves a single JSON detection result, including image ID, category ID, bounding box, and confidence score.
-
- Args:
- predn (torch.Tensor): Predicted detections in xyxy format with shape (n, 6) where n is the number of detections.
- The tensor should contain [x_min, y_min, x_max, y_max, confidence, class_id] for each detection.
- jdict (list[dict]): List to collect JSON formatted detection results.
- path (pathlib.Path): Path object of the image file, used to extract image_id.
- class_map (dict[int, int]): Mapping from model class indices to dataset-specific category IDs.
-
- Returns:
- None: Appends detection results as dictionaries to `jdict` list in-place.
-
- Examples:
- ```python
- predn = torch.tensor([[100, 50, 200, 150, 0.9, 0], [50, 30, 100, 80, 0.8, 1]])
- jdict = []
- path = Path("42.jpg")
- class_map = {0: 18, 1: 19}
- save_one_json(predn, jdict, path, class_map)
- ```
- This will append to `jdict`:
- ```
- [
- {'image_id': 42, 'category_id': 18, 'bbox': [125.0, 75.0, 100.0, 100.0], 'score': 0.9},
- {'image_id': 42, 'category_id': 19, 'bbox': [75.0, 55.0, 50.0, 50.0], 'score': 0.8}
- ]
- ```
-
- Notes:
- The `bbox` values are formatted as [x, y, width, height], where x and y represent the top-left corner of the box.
- """
+ """Saves a single JSON detection result, including image ID, category ID, bounding box, and confidence score."""
image_id = int(path.stem) if path.stem.isnumeric() else path.stem
box = xyxy2xywh(predn[:, :4]) # xywh
box[:, :2] -= box[:, 2:] / 2 # xy center to top-left corner
@@ -140,31 +83,7 @@ def save_one_json(predn, jdict, path, class_map):
def process_batch(detections, labels, iouv):
- """Return a correct prediction matrix given detections and labels at various IoU thresholds.
-
- Args:
- detections (np.ndarray): Array of shape (N, 6) where each row corresponds to a detection with format [x1, y1,
- x2, y2, conf, class].
- labels (np.ndarray): Array of shape (M, 5) where each row corresponds to a ground truth label with format
- [class, x1, y1, x2, y2].
- iouv (np.ndarray): Array of IoU thresholds to evaluate at.
-
- Returns:
- correct (np.ndarray): A binary array of shape (N, len(iouv)) indicating whether each detection is a true
- positive for each IoU threshold. There are 10 IoU levels used in the evaluation.
-
- Examples:
- ```python
- detections = np.array([[50, 50, 200, 200, 0.9, 1], [30, 30, 150, 150, 0.7, 0]])
- labels = np.array([[1, 50, 50, 200, 200]])
- iouv = np.linspace(0.5, 0.95, 10)
- correct = process_batch(detections, labels, iouv)
- ```
-
- Notes:
- - This function is used as part of the evaluation pipeline for object detection models.
- - IoU (Intersection over Union) is a common evaluation metric for object detection performance.
- """
+ """Return a correct prediction matrix given detections and labels at various IoU thresholds."""
correct = np.zeros((detections.shape[0], iouv.shape[0])).astype(bool)
iou = box_iou(labels[:, 1:], detections[:, :4])
correct_class = labels[:, 0:1] == detections[:, 5]
@@ -175,7 +94,6 @@ def process_batch(detections, labels, iouv):
if x[0].shape[0] > 1:
matches = matches[matches[:, 2].argsort()[::-1]]
matches = matches[np.unique(matches[:, 1], return_index=True)[1]]
- # matches = matches[matches[:, 2].argsort()[::-1]]
matches = matches[np.unique(matches[:, 0], return_index=True)[1]]
correct[matches[:, 1].astype(int), i] = True
return torch.tensor(correct, dtype=torch.bool, device=iouv.device)
@@ -211,93 +129,65 @@ def run(
plots=True,
callbacks=Callbacks(),
compute_loss=None,
+ # NEW:
+ save_per_image=False,
+ save_per_image_limit=-1,
):
- """Evaluates a YOLOv5 model on a dataset and logs performance metrics.
-
- Args:
- data (str | dict): Path to a dataset YAML file or a dataset dictionary.
- weights (str | list[str], optional): Path to the model weights file(s). Supports various formats including
- PyTorch, TorchScript, ONNX, OpenVINO, TensorRT, CoreML, TensorFlow SavedModel, TensorFlow GraphDef,
- TensorFlow Lite, TensorFlow Edge TPU, and PaddlePaddle.
- batch_size (int, optional): Batch size for inference. Default is 32.
- imgsz (int, optional): Input image size (pixels). Default is 640.
- conf_thres (float, optional): Confidence threshold for object detection. Default is 0.001.
- iou_thres (float, optional): IoU threshold for Non-Maximum Suppression (NMS). Default is 0.6.
- max_det (int, optional): Maximum number of detections per image. Default is 300.
- task (str, optional): Task type - 'train', 'val', 'test', 'speed', or 'study'. Default is 'val'.
- device (str, optional): Device to use for computation, e.g., '0' or '0,1,2,3' for CUDA or 'cpu' for CPU. Default
- is ''.
- workers (int, optional): Number of dataloader workers. Default is 8.
- single_cls (bool, optional): Treat dataset as a single class. Default is False.
- augment (bool, optional): Enable augmented inference. Default is False.
- verbose (bool, optional): Enable verbose output. Default is False.
- save_txt (bool, optional): Save results to *.txt files. Default is False.
- save_hybrid (bool, optional): Save label and prediction hybrid results to *.txt files. Default is False.
- save_conf (bool, optional): Save confidences in --save-txt labels. Default is False.
- save_json (bool, optional): Save a COCO-JSON results file. Default is False.
- project (str | Path, optional): Directory to save results. Default is ROOT/'runs/val'.
- name (str, optional): Name of the run. Default is 'exp'.
- exist_ok (bool, optional): Overwrite existing project/name without incrementing. Default is False.
- half (bool, optional): Use FP16 half-precision inference. Default is True.
- dnn (bool, optional): Use OpenCV DNN for ONNX inference. Default is False.
- model (torch.nn.Module, optional): Model object for training. Default is None.
- dataloader (torch.utils.data.DataLoader, optional): Dataloader object. Default is None.
- save_dir (Path, optional): Directory to save results. Default is Path('').
- plots (bool, optional): Plot validation images and metrics. Default is True.
- callbacks (utils.callbacks.Callbacks, optional): Callbacks for logging and monitoring. Default is Callbacks().
- compute_loss (function, optional): Loss function for training. Default is None.
-
- Returns:
- dict: Contains performance metrics including precision, recall, mAP50, and mAP50-95.
- """
- # Initialize/load model and set device
+ """Evaluates a YOLOv5 model on a dataset and logs performance metrics."""
training = model is not None
if training: # called by train.py
- device, pt, jit, engine = next(model.parameters()).device, True, False, False # get model device, PyTorch model
- half &= device.type != "cpu" # half precision only supported on CUDA
+ device, pt, jit, engine = next(model.parameters()).device, True, False, False
+ half &= device.type != "cpu"
model.half() if half else model.float()
else: # called directly
device = select_device(device, batch_size=batch_size)
# Directories
- save_dir = increment_path(Path(project) / name, exist_ok=exist_ok) # increment run
- (save_dir / "labels" if save_txt else save_dir).mkdir(parents=True, exist_ok=True) # make dir
+ save_dir = increment_path(Path(project) / name, exist_ok=exist_ok)
+ (save_dir / "labels" if save_txt else save_dir).mkdir(parents=True, exist_ok=True)
+
+ # NEW: per-image visualization folders
+ per_img_pred_dir = save_dir / "per_image" / "pred"
+ per_img_lbl_dir = save_dir / "per_image" / "labels"
+ if save_per_image:
+ per_img_pred_dir.mkdir(parents=True, exist_ok=True)
+ per_img_lbl_dir.mkdir(parents=True, exist_ok=True)
# Load model
model = DetectMultiBackend(weights, device=device, dnn=dnn, data=data, fp16=half)
stride, pt, jit, engine = model.stride, model.pt, model.jit, model.engine
- imgsz = check_img_size(imgsz, s=stride) # check image size
- half = model.fp16 # FP16 supported on limited backends with CUDA
+ imgsz = check_img_size(imgsz, s=stride)
+ half = model.fp16
if engine:
batch_size = model.batch_size
else:
device = model.device
if not (pt or jit):
- batch_size = 1 # export.py models default to batch-size 1
+ batch_size = 1
LOGGER.info(f"Forcing --batch-size 1 square inference (1,3,{imgsz},{imgsz}) for non-PyTorch models")
# Data
- data = check_dataset(data) # check
+ data = check_dataset(data)
# Configure
model.eval()
cuda = device.type != "cpu"
- is_coco = isinstance(data.get("val"), str) and data["val"].endswith(f"coco{os.sep}val2017.txt") # COCO dataset
- nc = 1 if single_cls else int(data["nc"]) # number of classes
- iouv = torch.linspace(0.5, 0.95, 10, device=device) # iou vector for mAP@0.5:0.95
+ is_coco = isinstance(data.get("val"), str) and data["val"].endswith(f"coco{os.sep}val2017.txt")
+ nc = 1 if single_cls else int(data["nc"])
+ iouv = torch.linspace(0.5, 0.95, 10, device=device)
niou = iouv.numel()
# Dataloader
if not training:
- if pt and not single_cls: # check --weights are trained on --data
+ if pt and not single_cls:
ncm = model.model.nc
assert ncm == nc, (
- f"{weights} ({ncm} classes) trained on different --data than what you passed ({nc} "
- f"classes). Pass correct combination of --weights and --data that are trained together."
+ f"{weights} ({ncm} classes) trained on different --data than what you passed ({nc} classes). "
+ f"Pass correct combination of --weights and --data that are trained together."
)
- model.warmup(imgsz=(1 if pt else batch_size, 3, imgsz, imgsz)) # warmup
- pad, rect = (0.0, False) if task == "speed" else (0.5, pt) # square inference for benchmarks
- task = task if task in ("train", "val", "test") else "val" # path to train/val/test images
+ model.warmup(imgsz=(1 if pt else batch_size, 3, imgsz, imgsz))
+ pad, rect = (0.0, False) if task == "speed" else (0.5, pt)
+ task = task if task in ("train", "val", "test") else "val"
dataloader = create_dataloader(
data[task],
imgsz,
@@ -312,26 +202,30 @@ def run(
seen = 0
confusion_matrix = ConfusionMatrix(nc=nc)
- names = model.names if hasattr(model, "names") else model.module.names # get class names
- if isinstance(names, (list, tuple)): # old format
+ names = model.names if hasattr(model, "names") else model.module.names
+ if isinstance(names, (list, tuple)):
names = dict(enumerate(names))
class_map = coco80_to_coco91_class() if is_coco else list(range(1000))
s = ("%22s" + "%11s" * 6) % ("Class", "Images", "Instances", "P", "R", "mAP50", "mAP50-95")
tp, fp, p, r, f1, mp, mr, map50, ap50, map = 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
- dt = Profile(device=device), Profile(device=device), Profile(device=device) # profiling times
+ dt = Profile(device=device), Profile(device=device), Profile(device=device)
loss = torch.zeros(3, device=device)
jdict, stats, ap, ap_class = [], [], [], []
callbacks.run("on_val_start")
- pbar = tqdm(dataloader, desc=s, bar_format=TQDM_BAR_FORMAT) # progress bar
+ pbar = tqdm(dataloader, desc=s, bar_format=TQDM_BAR_FORMAT)
+
+ # NEW: counter for how many images already saved (per-image mode)
+ per_image_saved = 0
+
for batch_i, (im, targets, paths, shapes) in enumerate(pbar):
callbacks.run("on_val_batch_start")
with dt[0]:
if cuda:
im = im.to(device, non_blocking=True)
targets = targets.to(device)
- im = im.half() if half else im.float() # uint8 to fp16/32
- im /= 255 # 0 - 255 to 0.0 - 1.0
- nb, _, height, width = im.shape # batch size, channels, height, width
+ im = im.half() if half else im.float()
+ im /= 255
+ nb, _, height, width = im.shape
# Inference
with dt[1]:
@@ -339,11 +233,11 @@ def run(
# Loss
if compute_loss:
- loss += compute_loss(train_out, targets)[1] # box, obj, cls
+ loss += compute_loss(train_out, targets)[1]
# NMS
- targets[:, 2:] *= torch.tensor((width, height, width, height), device=device) # to pixels
- lb = [targets[targets[:, 0] == i, 1:] for i in range(nb)] if save_hybrid else [] # for autolabelling
+ targets[:, 2:] *= torch.tensor((width, height, width, height), device=device)
+ lb = [targets[targets[:, 0] == i, 1:] for i in range(nb)] if save_hybrid else []
with dt[2]:
preds = non_max_suppression(
preds, conf_thres, iou_thres, labels=lb, multi_label=True, agnostic=single_cls, max_det=max_det
@@ -352,9 +246,9 @@ def run(
# Metrics
for si, pred in enumerate(preds):
labels = targets[targets[:, 0] == si, 1:]
- nl, npr = labels.shape[0], pred.shape[0] # number of labels, predictions
+ nl, npr = labels.shape[0], pred.shape[0]
path, shape = Path(paths[si]), shapes[si][0]
- correct = torch.zeros(npr, niou, dtype=torch.bool, device=device) # init
+ correct = torch.zeros(npr, niou, dtype=torch.bool, device=device)
seen += 1
if npr == 0:
@@ -362,49 +256,80 @@ def run(
stats.append((correct, *torch.zeros((2, 0), device=device), labels[:, 0]))
if plots:
confusion_matrix.process_batch(detections=None, labels=labels[:, 0])
+ # Even if no predictions, we still may want to save label-only image in per-image mode
+ if plots and save_per_image:
+ if save_per_image_limit < 0 or per_image_saved < save_per_image_limit:
+ im1 = im[si : si + 1]
+ t1 = targets[targets[:, 0] == si].clone()
+ if len(t1):
+ t1[:, 0] = 0
+ plot_images(im1, t1, [str(path)], per_img_lbl_dir / f"{path.stem}.jpg", names)
+ # pred image (no detections) – still saved for parity
+ plot_images(
+ im1, output_to_target([pred]), [str(path)], per_img_pred_dir / f"{path.stem}.jpg", names
+ )
+ per_image_saved += 1
continue
# Predictions
if single_cls:
pred[:, 5] = 0
predn = pred.clone()
- scale_boxes(im[si].shape[1:], predn[:, :4], shape, shapes[si][1]) # native-space pred
+ scale_boxes(im[si].shape[1:], predn[:, :4], shape, shapes[si][1])
# Evaluate
if nl:
- tbox = xywh2xyxy(labels[:, 1:5]) # target boxes
- scale_boxes(im[si].shape[1:], tbox, shape, shapes[si][1]) # native-space labels
- labelsn = torch.cat((labels[:, 0:1], tbox), 1) # native-space labels
+ tbox = xywh2xyxy(labels[:, 1:5])
+ scale_boxes(im[si].shape[1:], tbox, shape, shapes[si][1])
+ labelsn = torch.cat((labels[:, 0:1], tbox), 1)
correct = process_batch(predn, labelsn, iouv)
if plots:
confusion_matrix.process_batch(predn, labelsn)
- stats.append((correct, pred[:, 4], pred[:, 5], labels[:, 0])) # (correct, conf, pcls, tcls)
+
+ stats.append((correct, pred[:, 4], pred[:, 5], labels[:, 0]))
# Save/log
if save_txt:
(save_dir / "labels").mkdir(parents=True, exist_ok=True)
save_one_txt(predn, save_conf, shape, file=save_dir / "labels" / f"{path.stem}.txt")
if save_json:
- save_one_json(predn, jdict, path, class_map) # append to COCO-JSON dictionary
+ save_one_json(predn, jdict, path, class_map)
callbacks.run("on_val_image_end", pred, predn, path, names, im[si])
- # Plot images
- if plots and batch_i < 3:
- plot_images(im, targets, paths, save_dir / f"val_batch{batch_i}_labels.jpg", names) # labels
- plot_images(im, output_to_target(preds), paths, save_dir / f"val_batch{batch_i}_pred.jpg", names) # pred
+ # NEW: Save per-image visualization (1 JPG per image)
+ if plots and save_per_image:
+ if save_per_image_limit < 0 or per_image_saved < save_per_image_limit:
+ im1 = im[si : si + 1]
+ t1 = targets[targets[:, 0] == si].clone()
+ if len(t1):
+ t1[:, 0] = 0 # reset index for single-image batch
+
+ # Save GT overlay
+ plot_images(im1, t1, [str(path)], per_img_lbl_dir / f"{path.stem}.jpg", names)
+ # Save prediction overlay
+ plot_images(
+ im1, output_to_target([pred]), [str(path)], per_img_pred_dir / f"{path.stem}.jpg", names
+ )
+
+ per_image_saved += 1
+
+ # Batch grid plots (keep original behavior ONLY if not using per-image)
+ if plots and (not save_per_image) and batch_i < 3:
+ plot_images(im, targets, paths, save_dir / f"val_batch{batch_i}_labels.jpg", names)
+ plot_images(im, output_to_target(preds), paths, save_dir / f"val_batch{batch_i}_pred.jpg", names)
callbacks.run("on_val_batch_end", batch_i, im, targets, paths, shapes, preds)
# Compute metrics
- stats = [torch.cat(x, 0).cpu().numpy() for x in zip(*stats)] # to numpy
+ stats = [torch.cat(x, 0).cpu().numpy() for x in zip(*stats)]
if len(stats) and stats[0].any():
tp, fp, p, r, f1, ap, ap_class = ap_per_class(*stats, plot=plots, save_dir=save_dir, names=names)
- ap50, ap = ap[:, 0], ap.mean(1) # AP@0.5, AP@0.5:0.95
+ ap50, ap = ap[:, 0], ap.mean(1)
mp, mr, map50, map = p.mean(), r.mean(), ap50.mean(), ap.mean()
- nt = np.bincount(stats[3].astype(int), minlength=nc) # number of targets per class
+ nt = np.bincount(stats[3].astype(int), minlength=nc)
# Print results
- pf = "%22s" + "%11i" * 2 + "%11.3g" * 4 # print format
+ pf = "%22s" + "%11i" * 2 + "%11.3g" * 4
LOGGER.info(pf % ("all", seen, nt.sum(), mp, mr, map50, map))
if nt.sum() == 0:
LOGGER.warning(f"WARNING ⚠️ no labels found in {task} set, can not compute metrics without labels")
@@ -415,7 +340,7 @@ def run(
LOGGER.info(pf % (names[c], seen, nt[c], p[i], r[i], ap50[i], ap[i]))
# Print speeds
- t = tuple(x.t / seen * 1e3 for x in dt) # speeds per image
+ t = tuple(x.t / seen * 1e3 for x in dt)
if not training:
shape = (batch_size, 3, imgsz, imgsz)
LOGGER.info(f"Speed: %.1fms pre-process, %.1fms inference, %.1fms NMS per image at shape {shape}" % t)
@@ -427,37 +352,41 @@ def run(
# Save JSON
if save_json and len(jdict):
- w = Path(weights[0] if isinstance(weights, list) else weights).stem if weights is not None else "" # weights
- anno_json = str(Path("../datasets/coco/annotations/instances_val2017.json")) # annotations
+ w = Path(weights[0] if isinstance(weights, list) else weights).stem if weights is not None else ""
+ anno_json = str(Path("../datasets/coco/annotations/instances_val2017.json"))
if not os.path.exists(anno_json):
anno_json = os.path.join(data["path"], "annotations", "instances_val2017.json")
- pred_json = str(save_dir / f"{w}_predictions.json") # predictions
+ pred_json = str(save_dir / f"{w}_predictions.json")
LOGGER.info(f"\nEvaluating pycocotools mAP... saving {pred_json}...")
with open(pred_json, "w") as f:
json.dump(jdict, f)
- try: # https://github.com/cocodataset/cocoapi/blob/master/PythonAPI/pycocoEvalDemo.ipynb
+ try:
check_requirements("pycocotools>=2.0.6")
from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval
- anno = COCO(anno_json) # init annotations api
- pred = anno.loadRes(pred_json) # init predictions api
+ anno = COCO(anno_json)
+ pred = anno.loadRes(pred_json)
eval = COCOeval(anno, pred, "bbox")
if is_coco:
- eval.params.imgIds = [int(Path(x).stem) for x in dataloader.dataset.im_files] # image IDs to evaluate
+ eval.params.imgIds = [int(Path(x).stem) for x in dataloader.dataset.im_files]
eval.evaluate()
eval.accumulate()
eval.summarize()
- map, map50 = eval.stats[:2] # update results (mAP@0.5:0.95, mAP@0.5)
+ map, map50 = eval.stats[:2]
except Exception as e:
LOGGER.info(f"pycocotools unable to run: {e}")
# Return results
- model.float() # for training
+ model.float()
if not training:
- s = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}" if save_txt else ""
- LOGGER.info(f"Results saved to {colorstr('bold', save_dir)}{s}")
+ s2 = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}" if save_txt else ""
+ extra = ""
+ if save_per_image:
+ extra = f"\nPer-image visualizations saved to {save_dir / 'per_image'} (pred/labels)"
+ LOGGER.info(f"Results saved to {colorstr('bold', save_dir)}{s2}{extra}")
+
maps = np.zeros(nc) + map
for i, c in enumerate(ap_class):
maps[c] = ap[i]
@@ -465,52 +394,7 @@ def run(
def parse_opt():
- """Parse command-line options for configuring YOLOv5 model inference.
-
- Args:
- data (str, optional): Path to the dataset YAML file. Default is 'data/coco128.yaml'.
- weights (list[str], optional): List of paths to model weight files. Default is 'yolov5s.pt'.
- batch_size (int, optional): Batch size for inference. Default is 32.
- imgsz (int, optional): Inference image size in pixels. Default is 640.
- conf_thres (float, optional): Confidence threshold for predictions. Default is 0.001.
- iou_thres (float, optional): IoU threshold for Non-Max Suppression (NMS). Default is 0.6.
- max_det (int, optional): Maximum number of detections per image. Default is 300.
- task (str, optional): Task type - options are 'train', 'val', 'test', 'speed', or 'study'. Default is 'val'.
- device (str, optional): Device to run the model on. e.g., '0' or '0,1,2,3' or 'cpu'. Default is empty to let the
- system choose automatically.
- workers (int, optional): Maximum number of dataloader workers per rank in DDP mode. Default is 8.
- single_cls (bool, optional): If set, treats the dataset as a single-class dataset. Default is False.
- augment (bool, optional): If set, performs augmented inference. Default is False.
- verbose (bool, optional): If set, reports mAP by class. Default is False.
- save_txt (bool, optional): If set, saves results to *.txt files. Default is False.
- save_hybrid (bool, optional): If set, saves label+prediction hybrid results to *.txt files. Default is False.
- save_conf (bool, optional): If set, saves confidences in --save-txt labels. Default is False.
- save_json (bool, optional): If set, saves results to a COCO-JSON file. Default is False.
- project (str, optional): Project directory to save results to. Default is 'runs/val'.
- name (str, optional): Name of the directory to save results to. Default is 'exp'.
- exist_ok (bool, optional): If set, existing directory will not be incremented. Default is False.
- half (bool, optional): If set, uses FP16 half-precision inference. Default is False.
- dnn (bool, optional): If set, uses OpenCV DNN for ONNX inference. Default is False.
-
- Returns:
- argparse.Namespace: Parsed command-line options.
-
- Examples:
- To validate a trained YOLOv5 model on a COCO dataset:
- ```python
- $ python val.py --weights yolov5s.pt --data coco128.yaml --img 640
- ```
- Different model formats could be used instead of `yolov5s.pt`:
- ```python
- $ python val.py --weights yolov5s.pt yolov5s.torchscript yolov5s.onnx yolov5s_openvino_model yolov5s.engine
- ```
- Additional options include saving results in different formats, selecting devices, and more.
-
- Notes:
- - The '--data' parameter is checked to ensure it ends with 'coco.yaml' if '--save-json' is set.
- - The '--save-txt' option is set to True if '--save-hybrid' is enabled.
- - Args are printed using `print_args` to facilitate debugging.
- """
+ """Parse command-line options for configuring YOLOv5 validation."""
parser = argparse.ArgumentParser()
parser.add_argument("--data", type=str, default=ROOT / "data/coco128.yaml", help="dataset.yaml path")
parser.add_argument("--weights", nargs="+", type=str, default=ROOT / "yolov5s.pt", help="model path(s)")
@@ -534,8 +418,22 @@ def parse_opt():
parser.add_argument("--exist-ok", action="store_true", help="existing project/name ok, do not increment")
parser.add_argument("--half", action="store_true", help="use FP16 half-precision inference")
parser.add_argument("--dnn", action="store_true", help="use OpenCV DNN for ONNX inference")
+
+ # NEW:
+ parser.add_argument(
+ "--save-per-image",
+ action="store_true",
+ help="save per-image visualization (1 jpg per image) for predictions and labels",
+ )
+ parser.add_argument(
+ "--save-per-image-limit",
+ type=int,
+ default=-1,
+ help="limit number of images saved (default=-1 means all)",
+ )
+
opt = parser.parse_args()
- opt.data = check_yaml(opt.data) # check YAML
+ opt.data = check_yaml(opt.data)
opt.save_json |= opt.data.endswith("coco.yaml")
opt.save_txt |= opt.save_hybrid
print_args(vars(opt))
@@ -544,52 +442,33 @@ def parse_opt():
def main(opt):
"""Executes YOLOv5 tasks like training, validation, testing, speed, and study benchmarks based on provided options.
-
- Args:
- opt (argparse.Namespace): Parsed command-line options. This includes values for parameters like 'data',
- 'weights', 'batch_size', 'imgsz', 'conf_thres', 'iou_thres', 'max_det', 'task', 'device', 'workers',
- 'single_cls', 'augment', 'verbose', 'save_txt', 'save_hybrid', 'save_conf', 'save_json', 'project', 'name',
- 'exist_ok', 'half', and 'dnn', essential for configuring the YOLOv5 tasks.
-
- Returns:
- None
-
- Examples:
- To validate a trained YOLOv5 model on the COCO dataset with a specific weights file, use:
- ```python
- $ python val.py --weights yolov5s.pt --data coco128.yaml --img 640
- ```
"""
check_requirements(ROOT / "requirements.txt", exclude=("tensorboard", "thop"))
- if opt.task in ("train", "val", "test"): # run normally
- if opt.conf_thres > 0.001: # https://github.com/ultralytics/yolov5/issues/1466
+ if opt.task in ("train", "val", "test"):
+ if opt.conf_thres > 0.001:
LOGGER.info(f"WARNING ⚠️ confidence threshold {opt.conf_thres} > 0.001 produces invalid results")
if opt.save_hybrid:
LOGGER.info("WARNING ⚠️ --save-hybrid will return high mAP from hybrid labels, not from predictions alone")
run(**vars(opt))
-
else:
weights = opt.weights if isinstance(opt.weights, list) else [opt.weights]
- opt.half = torch.cuda.is_available() and opt.device != "cpu" # FP16 for fastest results
- if opt.task == "speed": # speed benchmarks
- # python val.py --task speed --data coco.yaml --batch 1 --weights yolov5n.pt yolov5s.pt...
+ opt.half = torch.cuda.is_available() and opt.device != "cpu"
+ if opt.task == "speed":
opt.conf_thres, opt.iou_thres, opt.save_json = 0.25, 0.45, False
for opt.weights in weights:
run(**vars(opt), plots=False)
-
- elif opt.task == "study": # speed vs mAP benchmarks
- # python val.py --task study --data coco.yaml --iou 0.7 --weights yolov5n.pt yolov5s.pt...
+ elif opt.task == "study":
for opt.weights in weights:
- f = f"study_{Path(opt.data).stem}_{Path(opt.weights).stem}.txt" # filename to save to
- x, y = list(range(256, 1536 + 128, 128)), [] # x axis (image sizes), y axis
- for opt.imgsz in x: # img-size
+ f = f"study_{Path(opt.data).stem}_{Path(opt.weights).stem}.txt"
+ x, y = list(range(256, 1536 + 128, 128)), []
+ for opt.imgsz in x:
LOGGER.info(f"\nRunning {f} --imgsz {opt.imgsz}...")
r, _, t = run(**vars(opt), plots=False)
- y.append(r + t) # results and times
- np.savetxt(f, y, fmt="%10.4g") # save
+ y.append(r + t)
+ np.savetxt(f, y, fmt="%10.4g")
subprocess.run(["zip", "-r", "study.zip", "study_*.txt"])
- plot_val_study(x=x) # plot
+ plot_val_study(x=x)
else:
raise NotImplementedError(f'--task {opt.task} not in ("train", "val", "test", "speed", "study")')