训练yolov5识别小黄球模型

训练yolov5识别小黄球模型

1、标注数据

 

2、整理数据

 

3、训练:修改:myvoc.yaml

myvoc.yaml

train: VOC_2022042301/train.txt
val: VOC_2022042301/val.txt

# number of classes
nc: 1

# class names
names: ["L_ball"]

 

4、开始训练

python train_20220423.py --img-size 640 --batch-size 1 --epochs 300 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml --workers 0

 

训练日志:

(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>
(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>
(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>
(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>python train_20220423.py --img-size 640 --batch-size 1 --epochs 300 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml --workers 0
Using torch 1.8.1+cu111 CUDA:0 (NVIDIA GeForce RTX 3080 Laptop GPU, 16383.5MB)


Namespace(adam=False, batch_size=1, bucket='', cache_images=False, cfg='./models/yolov5m.yaml', data='./data/myvoc.yaml', device='', epochs=300, evolve=False, exist_ok=False, global_rank=-1, hyp='data/hyp.scratch.yaml', image_weights=False, img_size=[640, 640], local_rank=-1, log_artifacts=False, log_imgs=16, multi_scale=False, name='exp', noautoanchor=False, nosave=False, notest=False, project='runs/train', quad=False, rect=False, resume=False, save_dir='runs\\train\\exp9', single_cls=False, sync_bn=False, total_batch_size=1, weights='yolov5s.pt', workers=0, world_size=1)
Start Tensorboard with "tensorboard --logdir runs/train", view at http://localhost:6006/
Hyperparameters {'lr0': 0.01, 'lrf': 0.2, '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}
Overriding model.yaml nc=80 with nc=1

                 from  n    params  module                                  arguments
  0                -1  1      5280  models.common.Focus                     [3, 48, 3]
  1                -1  1     41664  models.common.Conv                      [48, 96, 3, 2]
  2                -1  1     65280  models.common.C3                        [96, 96, 2]
  3                -1  1    166272  models.common.Conv                      [96, 192, 3, 2]
  4                -1  1    629760  models.common.C3                        [192, 192, 6]
  5                -1  1    664320  models.common.Conv                      [192, 384, 3, 2]
  6                -1  1   2512896  models.common.C3                        [384, 384, 6]
  7                -1  1   2655744  models.common.Conv                      [384, 768, 3, 2]
  8                -1  1   1476864  models.common.SPP                       [768, 768, [5, 9, 13]]
  9                -1  1   4134912  models.common.C3                        [768, 768, 2, False]
 10                -1  1    295680  models.common.Conv                      [768, 384, 1, 1]
 11                -1  1         0  torch.nn.modules.upsampling.Upsample    [None, 2, 'nearest']
 12           [-1, 6]  1         0  models.common.Concat                    [1]
 13                -1  1   1182720  models.common.C3                        [768, 384, 2, False]
 14                -1  1     74112  models.common.Conv                      [384, 192, 1, 1]
 15                -1  1         0  torch.nn.modules.upsampling.Upsample    [None, 2, 'nearest']
 16           [-1, 4]  1         0  models.common.Concat                    [1]
 17                -1  1    296448  models.common.C3                        [384, 192, 2, False]
 18                -1  1    332160  models.common.Conv                      [192, 192, 3, 2]
 19          [-1, 14]  1         0  models.common.Concat                    [1]
 20                -1  1   1035264  models.common.C3                        [384, 384, 2, False]
 21                -1  1   1327872  models.common.Conv                      [384, 384, 3, 2]
 22          [-1, 10]  1         0  models.common.Concat                    [1]
 23                -1  1   4134912  models.common.C3                        [768, 768, 2, False]
 24      [17, 20, 23]  1     24246  models.yolo.Detect                      [1, [[10, 13, 16, 30, 33, 23], [30, 61, 62, 45, 59, 119], [116, 90, 156, 198, 373, 326]], [192, 384, 768]]
Model Summary: 391 layers, 21056406 parameters, 21056406 gradients, 50.4 GFLOPS

Transferred 59/506 items from yolov5s.pt
Scaled weight_decay = 0.0005
Optimizer groups: 86 .bias, 86 conv.weight, 83 other
Scanning 'VOC_2022042301\labels' for images and labels... 255 found, 0 missing, 0 empty, 0 corrupted: 100%|█████████████████████████████████████████████| 255/255 [00:00<00:00, 2032.08it/s]
New cache created: VOC_2022042301\labels.cache
Scanning 'VOC_2022042301\labels.cache' for images and labels... 255 found, 0 missing, 0 empty, 0 corrupted: 100%|█████████████████████████████████████████████████| 255/255 [00:00<?, ?it/s]
Scanning 'VOC_2022042301\labels' for images and labels... 46 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████| 46/46 [00:00<00:00, 2262.03it/s]
New cache created: VOC_2022042301\labels.cache
Scanning 'VOC_2022042301\labels.cache' for images and labels... 46 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 46/46 [00:00<?, ?it/s]Plotting labels...
Scanning 'VOC_2022042301\labels.cache' for images and labels... 46 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 46/46 [00:00<?, ?it/s]

Analyzing anchors... anchors/target = 6.01, Best Possible Recall (BPR) = 1.0000
Image sizes 640 train, 640 test
Using 0 dataloader workers
Logging results to runs\train\exp9
Starting training for 300 epochs...

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     0/299     1.22G   0.09374   0.02751         0    0.1212         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:31<00:00,  8.16it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:03<00:00, 13.14it/s]
                 all          46           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     1/299      1.2G   0.07543   0.02901         0    0.1044         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.18it/s]
                 all          46          46    0.000145      0.0435    7.16e-06    7.16e-07

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     2/299      1.2G   0.07448   0.02862         0    0.1031         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.30it/s]
                 all          46          46    0.000145      0.0435    7.16e-06    7.16e-07

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     3/299      1.2G   0.07518   0.02948         0    0.1047         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.83it/s]
                 all          46          46    0.000145      0.0435    7.16e-06    7.16e-07

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     4/299      1.2G   0.07023   0.03006         0    0.1003         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.42it/s]
                 all          46          46     0.00182      0.0652    0.000538    6.47e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     5/299      1.2G   0.07084    0.0288         0   0.09964         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 25.58it/s]
                 all          46          46           0           0    0.000894    0.000214

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     6/299      1.2G   0.06702   0.02838         0    0.0954         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.21it/s]
                 all          46          46           0           0    0.000186    3.73e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     7/299      1.2G   0.06567   0.02931         0   0.09498         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.63it/s]
                 all          46          46           0           0    0.000211    3.38e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     8/299      1.2G   0.06069   0.02806         0   0.08875         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.62it/s]
                 all          46          46           0           0      0.0109     0.00276

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     9/299      1.2G   0.06001    0.0302         0    0.0902         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.83it/s]
                 all          46          46           0           0      0.0022    0.000484

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    10/299      1.2G   0.06092   0.02706         0   0.08798         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.74it/s]
                 all          46          46           0           0    0.000951    0.000119

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    11/299      1.2G   0.05893   0.02861         0   0.08754         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.00it/s]
                 all          46          46           1      0.0217       0.268      0.0735

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    12/299      1.2G   0.05647   0.02788         0   0.08436         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 25.58it/s]
                 all          46          46           1      0.0217       0.507       0.206

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    13/299      1.2G   0.05381   0.02692         0   0.08073         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.23it/s]
                 all          46          46           1      0.0217       0.435        0.13

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    14/299      1.2G   0.04815   0.02655         0   0.07471         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.94it/s]
                 all          46          46           0           0     0.00944     0.00175

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    15/299      1.2G   0.04888   0.02395         0   0.07283         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.88it/s]
                 all          46          46           1      0.0217       0.147      0.0217

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    16/299      1.2G   0.04836   0.02397         0   0.07234         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.87it/s]
                 all          46          46           1      0.0217       0.269        0.14

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    17/299      1.2G   0.04517   0.02332         0   0.06849         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.55it/s]
                 all          46          46       0.271       0.913       0.718       0.243

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    18/299      1.2G   0.05286   0.02095         0    0.0738         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.22it/s]
                 all          46          46           1      0.0217       0.296       0.106

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    19/299      1.2G   0.04495   0.02418         0   0.06913         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.77it/s]
                 all          46          46        0.91       0.441       0.707       0.283

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    20/299      1.2G   0.04509   0.02149         0   0.06658         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.80it/s]
                 all          46          46       0.216       0.739       0.648       0.287

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    21/299      1.2G   0.04464   0.01969         0   0.06433         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46       0.124       0.761       0.715       0.316

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    22/299      1.2G   0.04228   0.01984         0   0.06212         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.35it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.81it/s]
                 all          46          46        0.34       0.804       0.798       0.387

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    23/299      1.2G   0.04033   0.01801         0   0.05833         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 25.98it/s]
                 all          46          46       0.201           1       0.897       0.474

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    24/299      1.2G   0.03839   0.01497         0   0.05336         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.95it/s]
                 all          46          46       0.363       0.935       0.876       0.514

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    25/299      1.2G   0.04329   0.01614         0   0.05944         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.97it/s]
                 all          46          46       0.198       0.957       0.853       0.278

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    26/299      1.2G   0.04027   0.01753         0    0.0578         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.39it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.172       0.935       0.849       0.374

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    27/299      1.2G   0.03796   0.01568         0   0.05365         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.85it/s]
                 all          46          46       0.397       0.913       0.891       0.333

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    28/299      1.2G   0.03714   0.01476         0   0.05191         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.63it/s]
                 all          46          46       0.247           1       0.988       0.463

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    29/299      1.2G    0.0352    0.0133         0    0.0485         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.96it/s]
                 all          46          46       0.501       0.957       0.953       0.581

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    30/299      1.2G   0.03787    0.0137         0   0.05157         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.62it/s]
                 all          46          46       0.565       0.978       0.928       0.384

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    31/299      1.2G   0.03715   0.01261         0   0.04977         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.97it/s]
                 all          46          46        0.25       0.913       0.895       0.455

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    32/299      1.2G    0.0367   0.01318         0   0.04989         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.37it/s]
                 all          46          46       0.772           1       0.995       0.403

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    33/299      1.2G   0.03723     0.013         0   0.05023         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.49it/s]
                 all          46          46       0.411        0.87       0.864        0.54

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    34/299      1.2G    0.0283   0.01293         0   0.04123         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.63it/s]
                 all          46          46       0.201       0.957       0.954       0.616

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    35/299      1.2G   0.03373   0.01281         0   0.04654         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46       0.264       0.935        0.92       0.525

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    36/299      1.2G   0.02906   0.01184         0   0.04089         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.50it/s]
                 all          46          46       0.352       0.957       0.957       0.668

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    37/299      1.2G   0.03044   0.01139         0   0.04183         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.74it/s]
                 all          46          46       0.342       0.935       0.926       0.634

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    38/299      1.2G   0.03006   0.01172         0   0.04178         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.88it/s]
                 all          46          46       0.329           1       0.995       0.611

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    39/299      1.2G   0.02985    0.0109         0   0.04076         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.95it/s]
                 all          46          46       0.415       0.935       0.927       0.533

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    40/299      1.2G   0.02794   0.01106         0     0.039         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.487           1       0.995        0.66

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    41/299      1.2G    0.0294   0.01041         0   0.03981         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.70it/s]
                 all          46          46       0.879           1       0.995       0.422

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    42/299      1.2G   0.02869   0.01123         0   0.03992         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.30it/s]
                 all          46          46       0.606           1       0.995       0.682

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    43/299      1.2G   0.03147    0.0104         0   0.04187         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.95it/s]
                 all          46          46       0.566       0.957       0.959       0.549

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    44/299      1.2G   0.02954   0.01069         0   0.04022         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.24it/s]
                 all          46          46       0.347       0.957        0.94       0.561

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    45/299      1.2G   0.02795   0.01155         0   0.03949         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.80it/s]
                 all          46          46       0.348       0.913       0.917       0.572

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    46/299      1.2G   0.03274   0.01093         0   0.04367         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.37it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46        0.53           1       0.995       0.646

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    47/299      1.2G   0.02625   0.01027         0   0.03652         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.91it/s]
                 all          46          46       0.567           1       0.995       0.714

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    48/299      1.2G   0.02629  0.009647         0   0.03594         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.611           1       0.995       0.728

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    49/299      1.2G    0.0235  0.009798         0    0.0333         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.28it/s]
                 all          46          46        0.68           1       0.995         0.7

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    50/299      1.2G   0.02635  0.009753         0   0.03611         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.09it/s]
                 all          46          46       0.721           1       0.995       0.699

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    51/299      1.2G   0.02789  0.009645         0   0.03754         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.649           1       0.995        0.77

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    52/299      1.2G   0.02444   0.01039         0   0.03482         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.14it/s]
                 all          46          46        0.84           1       0.995       0.565

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    53/299      1.2G   0.02648  0.009582         0   0.03606         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.57it/s]
                 all          46          46       0.794           1       0.995       0.732

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    54/299      1.2G   0.02714   0.00949         0   0.03663         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.422           1       0.995       0.765

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    55/299      1.2G   0.02278  0.009105         0   0.03188         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.703           1       0.995       0.748

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    56/299      1.2G   0.02508  0.009366         0   0.03445         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.40it/s]
                 all          46          46       0.846           1       0.995         0.6

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    57/299      1.2G   0.02514  0.009223         0   0.03436         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.725           1       0.995       0.669

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    58/299      1.2G   0.02389  0.009794         0   0.03369         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.42it/s]
                 all          46          46       0.596           1       0.995       0.743

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    59/299      1.2G    0.0252   0.00895         0   0.03415         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.55it/s]
                 all          46          46        0.91           1       0.995       0.747

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    60/299      1.2G   0.02285  0.008992         0   0.03184         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.80it/s]
                 all          46          46       0.659           1       0.995       0.696

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    61/299      1.2G   0.02276  0.008949         0   0.03171         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.87it/s]
                 all          46          46       0.867           1       0.995       0.685

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    62/299      1.2G     0.024  0.008777         0   0.03278         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.81it/s]
                 all          46          46       0.683           1       0.995       0.784

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    63/299      1.2G   0.02165  0.009059         0   0.03071         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.65it/s]
                 all          46          46       0.794           1       0.995       0.729

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    64/299      1.2G   0.02419    0.0089         0   0.03309         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.49it/s]
                 all          46          46        0.75           1       0.995       0.779

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    65/299      1.2G   0.02295  0.008787         0   0.03174         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.15it/s]
                 all          46          46       0.846           1       0.995        0.78

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    66/299      1.2G   0.02302  0.008449         0   0.03147         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:25<00:00, 10.14it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 25.63it/s]
                 all          46          46       0.712           1       0.995       0.772

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    67/299      1.2G   0.02471  0.009252         0   0.03397         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.39it/s]
                 all          46          46        0.87           1       0.995       0.772

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    68/299      1.2G   0.02155  0.008261         0   0.02981         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.29it/s]
                 all          46          46       0.663           1       0.995       0.751

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    69/299      1.2G   0.02414  0.008631         0   0.03277         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.02it/s]
                 all          46          46       0.829           1       0.995       0.736

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    70/299      1.2G   0.02282   0.00902         0   0.03184         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.74it/s]
                 all          46          46       0.851           1       0.995       0.794

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    71/299      1.2G   0.02026  0.008463         0   0.02872         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.25it/s]
                 all          46          46       0.833           1       0.995       0.724

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    72/299      1.2G   0.02117  0.008385         0   0.02956         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.53it/s]
                 all          46          46       0.941           1       0.995       0.772

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    73/299      1.2G   0.02099  0.008637         0   0.02962         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.38it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.71it/s]
                 all          46          46       0.838           1       0.995       0.788

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    74/299      1.2G   0.02046  0.008121         0   0.02858         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.02it/s]
                 all          46          46       0.705           1       0.995        0.79

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    75/299      1.2G   0.02366   0.00953         0   0.03319         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.85it/s]
                 all          46          46       0.902           1       0.995       0.741

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    76/299      1.2G   0.02117  0.007965         0   0.02914         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.05it/s]
                 all          46          46       0.836           1       0.995        0.82

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    77/299      1.2G   0.01992  0.007933         0   0.02786         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.961           1       0.995       0.747

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    78/299      1.2G   0.02235  0.007978         0   0.03033         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.18it/s]
                 all          46          46       0.817           1       0.995       0.742

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    79/299      1.2G   0.02362   0.00883         0   0.03245         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.93it/s]
                 all          46          46       0.929           1       0.995       0.746

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    80/299      1.2G   0.01967  0.008493         0   0.02816         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.45it/s]
                 all          46          46       0.922           1       0.995        0.81

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    81/299      1.2G   0.01809   0.00744         0   0.02553         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.33it/s]
                 all          46          46       0.893           1       0.995       0.776

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    82/299      1.2G   0.02186  0.008381         0   0.03025         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.36it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.905           1       0.995       0.752

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    83/299      1.2G   0.01873  0.008168         0    0.0269         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.21it/s]
                 all          46          46       0.828           1       0.995       0.798

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    84/299      1.2G   0.02015  0.007652         0    0.0278         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.70it/s]
                 all          46          46       0.951           1       0.995       0.752

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    85/299      1.2G   0.02012  0.007836         0   0.02795         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.39it/s]
                 all          46          46       0.837           1       0.995       0.803

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    86/299      1.2G   0.01793  0.007867         0    0.0258         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.923           1       0.995       0.824

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    87/299      1.2G   0.01986  0.008184         0   0.02804         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.42it/s]
                 all          46          46        0.95           1       0.995       0.819

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    88/299      1.2G   0.01956  0.007915         0   0.02748         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.95it/s]
                 all          46          46       0.979           1       0.995       0.786

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    89/299      1.2G   0.01759  0.007664         0   0.02526         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.87it/s]
                 all          46          46        0.96           1       0.995       0.786

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    90/299      1.2G   0.01812  0.007851         0   0.02597         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.967           1       0.995       0.795

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    91/299      1.2G   0.01875  0.007366         0   0.02612         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.979           1       0.995       0.782

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    92/299      1.2G    0.0172   0.00767         0   0.02487         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46        0.98           1       0.995       0.813

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    93/299      1.2G   0.01686  0.007495         0   0.02436         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.965           1       0.996       0.806

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    94/299      1.2G   0.01883  0.007832         0   0.02666         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.26it/s]
                 all          46          46       0.938           1       0.995       0.783

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    95/299      1.2G   0.01819  0.007681         0   0.02587         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.61it/s]
                 all          46          46       0.931           1       0.995       0.813

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    96/299      1.2G   0.01673   0.00751         0   0.02424         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.61it/s]
                 all          46          46       0.953           1       0.995       0.773

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    97/299      1.2G    0.0174  0.007838         0   0.02524         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.83it/s]
                 all          46          46       0.965           1       0.995       0.759

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    98/299      1.2G   0.01795  0.008156         0    0.0261         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.955           1       0.995       0.776

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    99/299      1.2G    0.0178  0.007833         0   0.02563         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.75it/s]
                 all          46          46       0.944           1       0.995       0.758

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   100/299      1.2G   0.01872  0.007907         0   0.02663         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.19it/s]
                 all          46          46        0.98           1       0.995       0.805

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   101/299      1.2G    0.0177  0.007261         0   0.02496         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.66it/s]
                 all          46          46       0.949           1       0.995       0.812

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   102/299      1.2G   0.01853  0.007457         0   0.02598         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.19it/s]
                 all          46          46       0.941           1       0.995       0.749

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   103/299      1.2G   0.01684  0.007101         0   0.02394         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.928           1       0.995       0.812

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   104/299      1.2G   0.01749  0.007455         0   0.02494         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.62it/s]
                 all          46          46       0.975           1       0.995       0.785

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   105/299      1.2G   0.01955  0.007817         0   0.02737         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.87it/s]
                 all          46          46       0.976           1       0.995       0.765

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   106/299      1.2G   0.01902  0.007506         0   0.02653         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.29it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.961           1       0.995       0.818

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   107/299      1.2G   0.01819  0.007178         0   0.02537         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.10it/s]
                 all          46          46       0.917           1       0.995       0.767

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   108/299      1.2G   0.01691  0.007505         0   0.02442         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.86it/s]
                 all          46          46       0.954           1       0.995       0.748

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   109/299      1.2G   0.01662  0.007154         0   0.02378         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.77it/s]
                 all          46          46       0.965           1       0.995       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   110/299      1.2G   0.01838  0.007289         0   0.02567         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46       0.967           1       0.995        0.82

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   111/299      1.2G   0.01749  0.007585         0   0.02508         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.39it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.21it/s]
                 all          46          46        0.93           1       0.995        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   112/299      1.2G   0.01774  0.007545         0   0.02528         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.38it/s]
                 all          46          46       0.932           1       0.995       0.795

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   113/299      1.2G   0.01755  0.007041         0   0.02459         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.83it/s]
                 all          46          46       0.905           1       0.995       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   114/299      1.2G   0.01817  0.007337         0   0.02551         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.33it/s]
                 all          46          46       0.967           1       0.995       0.758

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   115/299      1.2G   0.01776  0.007414         0   0.02517         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.972           1       0.995       0.779

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   116/299      1.2G   0.01731  0.006856         0   0.02416         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.37it/s]
                 all          46          46        0.98           1       0.995        0.79

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   117/299      1.2G   0.01699  0.006823         0   0.02381         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.63it/s]
                 all          46          46       0.979           1       0.996       0.784

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   118/299      1.2G   0.01691  0.007222         0   0.02413         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.30it/s]
                 all          46          46        0.98           1       0.995        0.76

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   119/299      1.2G    0.0152  0.006926         0   0.02213         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.976           1       0.995       0.754

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   120/299      1.2G   0.01818  0.006871         0   0.02505         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.39it/s]
                 all          46          46        0.98           1       0.995       0.797

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   121/299      1.2G   0.01582   0.00729         0   0.02311         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.95it/s]
                 all          46          46        0.98           1       0.996       0.785

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   122/299      1.2G   0.01533  0.006637         0   0.02197         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.52it/s]
                 all          46          46       0.967           1       0.995       0.816

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   123/299      1.2G   0.01684  0.006968         0   0.02381         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.51it/s]
                 all          46          46       0.968           1       0.995       0.818

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   124/299      1.2G   0.01657  0.007245         0   0.02381         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.94it/s]
                 all          46          46       0.965           1       0.996       0.815

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   125/299      1.2G   0.01628  0.007334         0   0.02362         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.968           1       0.996       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   126/299      1.2G   0.01652  0.007746         0   0.02427         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.88it/s]
                 all          46          46       0.956           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   127/299      1.2G   0.01735  0.007047         0    0.0244         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.87it/s]
                 all          46          46       0.968           1       0.996       0.806

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   128/299      1.2G   0.01733   0.00736         0   0.02469         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.76it/s]
                 all          46          46       0.968           1       0.996       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   129/299      1.2G   0.01892  0.007323         0   0.02625         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.69it/s]
                 all          46          46       0.968           1       0.996       0.788

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   130/299      1.2G   0.01711  0.007205         0   0.02432         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.32it/s]
                 all          46          46       0.972           1       0.996       0.823

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   131/299      1.2G   0.01471  0.006884         0    0.0216         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.20it/s]
                 all          46          46       0.965           1       0.995       0.807

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   132/299      1.2G   0.01532  0.007041         0   0.02237         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.93it/s]
                 all          46          46       0.965           1       0.996       0.844

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   133/299      1.2G   0.01687  0.007006         0   0.02388         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.94it/s]
                 all          46          46       0.966           1       0.996       0.792

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   134/299      1.2G   0.01872  0.007844         0   0.02656         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.969           1       0.996       0.822

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   135/299      1.2G   0.01588  0.006934         0   0.02282         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.969           1       0.995       0.787

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   136/299      1.2G   0.01587  0.006639         0   0.02251         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.951           1       0.995       0.811

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   137/299      1.2G   0.01733  0.007055         0   0.02439         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.97it/s]
                 all          46          46       0.971           1       0.996       0.807

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   138/299      1.2G    0.0149  0.006629         0   0.02153         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.80it/s]
                 all          46          46       0.971           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   139/299      1.2G   0.01475  0.006286         0   0.02103         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.79it/s]
                 all          46          46       0.981           1       0.995       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   140/299      1.2G    0.0159  0.006589         0   0.02249         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.51it/s]
                 all          46          46        0.98           1       0.996       0.818

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   141/299      1.2G   0.01601  0.007264         0   0.02327         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.25it/s]
                 all          46          46       0.962           1       0.996       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   142/299      1.2G   0.01614  0.007127         0   0.02326         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.09it/s]
                 all          46          46        0.98           1       0.996       0.816

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   143/299      1.2G   0.01403  0.006655         0   0.02069         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.56it/s]
                 all          46          46        0.97           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   144/299      1.2G   0.01564  0.006952         0   0.02259         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.28it/s]
                 all          46          46       0.966           1       0.996         0.8

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   145/299      1.2G   0.01487  0.006563         0   0.02143         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.12it/s]
                 all          46          46       0.957           1       0.996       0.844

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   146/299      1.2G   0.01545  0.007554         0     0.023         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.22it/s]
                 all          46          46        0.97           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   147/299      1.2G   0.01478  0.006804         0   0.02158         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46        0.98           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   148/299      1.2G   0.01533  0.006665         0     0.022         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46        0.98           1       0.995       0.811

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   149/299      1.2G   0.01488  0.006336         0   0.02122         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46       0.981           1       0.996       0.808

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   150/299      1.2G     0.016   0.00673         0   0.02272         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.69it/s]
                 all          46          46        0.98           1       0.996        0.81

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   151/299      1.2G   0.01529  0.006822         0   0.02211         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.969           1       0.996        0.82

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   152/299      1.2G   0.01471  0.006702         0   0.02141         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.81it/s]
                 all          46          46       0.968           1       0.996       0.813

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   153/299      1.2G   0.01398  0.007034         0   0.02101         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.93it/s]
                 all          46          46       0.966           1       0.995       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   154/299      1.2G   0.01425  0.006629         0   0.02087         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.64it/s]
                 all          46          46        0.98           1       0.996       0.825

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   155/299      1.2G   0.01467  0.006725         0   0.02139         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.33it/s]
                 all          46          46       0.967           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   156/299      1.2G     0.014  0.006271         0   0.02028         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.29it/s]
                 all          46          46       0.971           1       0.996       0.841

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   157/299      1.2G   0.01418  0.006827         0   0.02101         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.29it/s]
                 all          46          46       0.972           1       0.996       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   158/299      1.2G   0.01399  0.006538         0   0.02053         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.84it/s]
                 all          46          46        0.97           1       0.996       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   159/299      1.2G   0.01432   0.00648         0    0.0208         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.18it/s]
                 all          46          46       0.971           1       0.996       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   160/299      1.2G   0.01498  0.006657         0   0.02164         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.32it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.21it/s]
                 all          46          46        0.98           1       0.996       0.813

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   161/299      1.2G   0.01462  0.006768         0   0.02139         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.32it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.47it/s]
                 all          46          46        0.98           1       0.996       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   162/299      1.2G   0.01398  0.006491         0   0.02047         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.981           1       0.996        0.82

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   163/299      1.2G   0.01368  0.006367         0   0.02005         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46        0.98           1       0.996       0.815

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   164/299      1.2G    0.0137  0.006508         0   0.02021         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.54it/s]
                 all          46          46        0.98           1       0.996        0.84

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   165/299      1.2G   0.01402  0.006292         0   0.02031         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46        0.98           1       0.996       0.843

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   166/299      1.2G   0.01379  0.006267         0   0.02006         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.76it/s]
                 all          46          46       0.981           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   167/299      1.2G   0.01426  0.006658         0   0.02092         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.33it/s]
                 all          46          46       0.981           1       0.997        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   168/299      1.2G   0.01358  0.006403         0   0.01999         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46        0.98           1       0.997       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   169/299      1.2G   0.01376  0.006322         0   0.02008         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.64it/s]
                 all          46          46       0.981           1       0.996       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   170/299      1.2G   0.01317  0.006393         0   0.01956         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.42it/s]
                 all          46          46        0.98           1       0.996       0.819

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   171/299      1.2G   0.01307  0.006086         0   0.01916         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.42it/s]
                 all          46          46       0.981           1       0.996       0.825

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   172/299      1.2G   0.01315  0.006028         0   0.01918         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.74it/s]
                 all          46          46        0.98           1       0.996       0.825

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   173/299      1.2G   0.01369  0.006524         0   0.02022         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.75it/s]
                 all          46          46        0.98           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   174/299      1.2G   0.01328  0.006228         0   0.01951         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46        0.98           1       0.996       0.824

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   175/299      1.2G   0.01341  0.005861         0   0.01927         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.18it/s]
                 all          46          46        0.98           1       0.996       0.795

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   176/299      1.2G   0.01428  0.006415         0    0.0207         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.22it/s]
                 all          46          46        0.98           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   177/299      1.2G   0.01384  0.006005         0   0.01984         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.29it/s]
                 all          46          46       0.981           1       0.996       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   178/299      1.2G   0.01359   0.00644         0   0.02003         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.51it/s]
                 all          46          46       0.981           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   179/299      1.2G   0.01357  0.006594         0   0.02016         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.48it/s]
                 all          46          46        0.98           1       0.997       0.807

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   180/299      1.2G   0.01363  0.006577         0   0.02021         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.57it/s]
                 all          46          46       0.981           1       0.997       0.813

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   181/299      1.2G   0.01457  0.006093         0   0.02066         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.94it/s]
                 all          46          46        0.98           1       0.997         0.8

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   182/299      1.2G   0.01535  0.006978         0   0.02233         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.51it/s]
                 all          46          46        0.98           1       0.997       0.818

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   183/299      1.2G   0.01408  0.006207         0   0.02029         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.89it/s]
                 all          46          46        0.98           1       0.997       0.823

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   184/299      1.2G   0.01317  0.006169         0   0.01934         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.36it/s]
                 all          46          46        0.98           1       0.996       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   185/299      1.2G   0.01337  0.006171         0   0.01954         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.88it/s]
                 all          46          46       0.981           1       0.997       0.851

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   186/299      1.2G   0.01262  0.006119         0   0.01874         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.26it/s]
                 all          46          46       0.981           1       0.997       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   187/299      1.2G   0.01326   0.00657         0   0.01983         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.10it/s]
                 all          46          46       0.981           1       0.997       0.823

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   188/299      1.2G   0.01312   0.00621         0   0.01933         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.97it/s]
                 all          46          46       0.981           1       0.996       0.838

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   189/299      1.2G   0.01331  0.006446         0   0.01976         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.981           1       0.996        0.84

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   190/299      1.2G   0.01357  0.006229         0    0.0198         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.29it/s]
                 all          46          46       0.981           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   191/299      1.2G   0.01339  0.006187         0   0.01958         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.15it/s]
                 all          46          46       0.981           1       0.997       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   192/299      1.2G    0.0136  0.006277         0   0.01988         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.17it/s]
                 all          46          46        0.98           1       0.996       0.824

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   193/299      1.2G   0.01311  0.006373         0   0.01948         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.11it/s]
                 all          46          46        0.98           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   194/299      1.2G    0.0132  0.005997         0    0.0192         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.51it/s]
                 all          46          46       0.981           1       0.996       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   195/299      1.2G   0.01344  0.006494         0   0.01993         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.05it/s]
                 all          46          46       0.981           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   196/299      1.2G    0.0135  0.006614         0   0.02012         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.45it/s]
                 all          46          46       0.981           1       0.997       0.822

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   197/299      1.2G   0.01456  0.006515         0   0.02108         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.29it/s]
                 all          46          46       0.981           1       0.996       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   198/299      1.2G   0.01381  0.006313         0   0.02012         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.981           1       0.996       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   199/299      1.2G   0.01374   0.00637         0   0.02011         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.981           1       0.997       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   200/299      1.2G   0.01348  0.006225         0   0.01971         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46        0.98           1       0.996       0.821

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   201/299      1.2G   0.01395  0.006286         0   0.02024         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.55it/s]
                 all          46          46       0.981           1       0.996       0.845

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   202/299      1.2G   0.01322  0.005942         0   0.01917         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.94it/s]
                 all          46          46        0.98           1       0.997       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   203/299      1.2G   0.01344  0.006054         0    0.0195         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:25<00:00,  9.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.24it/s]
                 all          46          46       0.981           1       0.997       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   204/299      1.2G   0.01293  0.006216         0   0.01914         5       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.41it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.13it/s]
                 all          46          46       0.981           1       0.997       0.845

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   205/299      1.2G    0.0125  0.005852         0   0.01835         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.20it/s]
                 all          46          46       0.981           1       0.997       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   206/299      1.2G   0.01309  0.006216         0    0.0193         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.61it/s]
                 all          46          46       0.981           1       0.996       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   207/299      1.2G   0.01277  0.006102         0   0.01888         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.41it/s]
                 all          46          46       0.981           1       0.996       0.847

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   208/299      1.2G   0.01283  0.006167         0     0.019         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.63it/s]
                 all          46          46       0.981           1       0.996       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   209/299      1.2G   0.01309  0.006366         0   0.01945         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.35it/s]
                 all          46          46       0.981           1       0.996       0.846

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   210/299      1.2G   0.01306  0.006169         0   0.01923         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.43it/s]
                 all          46          46       0.981           1       0.997       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   211/299      1.2G   0.01172  0.006041         0   0.01776         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.50it/s]
                 all          46          46       0.981           1       0.997       0.841

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   212/299      1.2G   0.01254  0.006093         0   0.01863         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.82it/s]
                 all          46          46       0.981           1       0.996       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   213/299      1.2G   0.01256  0.006304         0   0.01886         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.48it/s]
                 all          46          46        0.98           1       0.996       0.829

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   214/299      1.2G   0.01282  0.006143         0   0.01896         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.98it/s]
                 all          46          46        0.98           1       0.996       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   215/299      1.2G   0.01271  0.006194         0    0.0189         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.39it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.37it/s]
                 all          46          46        0.98           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   216/299      1.2G   0.01174  0.006122         0   0.01786         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.66it/s]
                 all          46          46       0.981           1       0.996       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   217/299      1.2G   0.01251  0.006202         0   0.01871         6       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.47it/s]
                 all          46          46       0.981           1       0.996       0.843

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   218/299      1.2G   0.01344   0.00657         0   0.02001         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.46it/s]
                 all          46          46       0.981           1       0.996       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   219/299      1.2G   0.01237  0.006113         0   0.01848         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.65it/s]
                 all          46          46       0.981           1       0.996       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   220/299      1.2G   0.01244  0.005833         0   0.01827         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.01it/s]
                 all          46          46       0.981           1       0.996       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   221/299      1.2G   0.01188  0.005886         0   0.01777         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.74it/s]
                 all          46          46       0.981           1       0.996       0.846

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   222/299      1.2G   0.01338  0.005749         0   0.01913         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.13it/s]
                 all          46          46       0.981           1       0.997        0.84

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   223/299      1.2G   0.01236   0.00572         0   0.01808         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.67it/s]
                 all          46          46       0.981           1       0.996       0.822

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   224/299      1.2G   0.01247  0.006092         0   0.01856         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.85it/s]
                 all          46          46       0.981           1       0.997       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   225/299      1.2G   0.01146  0.005986         0   0.01744         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.29it/s]
                 all          46          46       0.981           1       0.997       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   226/299      1.2G   0.01227  0.005755         0   0.01802         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.981           1       0.997       0.846

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   227/299      1.2G   0.01236  0.005721         0   0.01808         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.98it/s]
                 all          46          46       0.981           1       0.997       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   228/299      1.2G   0.01309  0.006379         0   0.01947         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.18it/s]
                 all          46          46       0.981           1       0.996        0.84

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   229/299      1.2G    0.0122  0.006025         0   0.01822         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.74it/s]
                 all          46          46       0.981           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   230/299      1.2G   0.01262  0.005939         0   0.01856         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.981           1       0.996       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   231/299      1.2G   0.01215  0.005942         0    0.0181         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.45it/s]
                 all          46          46       0.981           1       0.996       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   232/299      1.2G   0.01183  0.005628         0   0.01746         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.70it/s]
                 all          46          46       0.981           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   233/299      1.2G   0.01273  0.006062         0   0.01879         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.39it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.77it/s]
                 all          46          46       0.981           1       0.996       0.838

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   234/299      1.2G    0.0123  0.006077         0   0.01838         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.88it/s]
                 all          46          46       0.981           1       0.997       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   235/299      1.2G   0.01251  0.006286         0    0.0188         5       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.40it/s]
                 all          46          46       0.981           1       0.997       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   236/299      1.2G   0.01166  0.006111         0   0.01777         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.85it/s]
                 all          46          46       0.981           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   237/299      1.2G   0.01191  0.005671         0   0.01758         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.87it/s]
                 all          46          46       0.981           1       0.996       0.825

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   238/299      1.2G   0.01242  0.006428         0   0.01885         5       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.50it/s]
                 all          46          46       0.981           1       0.996       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   239/299      1.2G   0.01212  0.005701         0   0.01782         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.28it/s]
                 all          46          46       0.981           1       0.996       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   240/299      1.2G     0.012  0.005843         0   0.01784         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.52it/s]
                 all          46          46       0.981           1       0.996       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   241/299      1.2G   0.01201  0.005973         0   0.01798         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.39it/s]
                 all          46          46       0.981           1       0.996       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   242/299      1.2G   0.01205  0.006036         0   0.01808         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.77it/s]
                 all          46          46       0.981           1       0.996       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   243/299      1.2G   0.01188  0.005735         0   0.01761         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.91it/s]
                 all          46          46       0.981           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   244/299      1.2G   0.01247  0.006083         0   0.01856         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.04it/s]
                 all          46          46       0.981           1       0.997       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   245/299      1.2G   0.01249  0.006097         0   0.01859         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.54it/s]
                 all          46          46       0.981           1       0.997        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   246/299      1.2G   0.01181  0.005917         0   0.01773         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.50it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.72it/s]
                 all          46          46       0.981           1       0.997       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   247/299      1.2G   0.01161  0.005962         0   0.01757         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.36it/s]
                 all          46          46       0.981           1       0.997       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   248/299      1.2G   0.01225  0.005849         0    0.0181         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.42it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.64it/s]
                 all          46          46       0.981           1       0.998       0.829

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   249/299      1.2G   0.01189  0.005931         0   0.01782         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.73it/s]
                 all          46          46       0.981           1       0.998       0.843

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   250/299      1.2G   0.01119  0.005562         0   0.01675         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.60it/s]
                 all          46          46       0.981           1       0.996       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   251/299      1.2G   0.01221  0.005721         0   0.01793         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.03it/s]
                 all          46          46       0.981           1       0.997       0.843

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   252/299      1.2G   0.01204  0.005837         0   0.01788         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.90it/s]
                 all          46          46       0.981           1       0.996       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   253/299      1.2G   0.01179  0.005458         0   0.01725         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.32it/s]
                 all          46          46       0.981           1       0.996       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   254/299      1.2G   0.01151  0.005589         0    0.0171         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.49it/s]
                 all          46          46       0.981           1       0.996        0.83

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   255/299      1.2G   0.01135  0.005558         0   0.01691         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.28it/s]
                 all          46          46       0.981           1       0.996       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   256/299      1.2G   0.01225  0.005909         0   0.01816         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.03it/s]
                 all          46          46       0.981           1       0.996       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   257/299      1.2G   0.01223  0.005554         0   0.01779         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.981           1       0.997       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   258/299      1.2G   0.01271  0.005983         0    0.0187         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.39it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.03it/s]
                 all          46          46       0.981           1       0.996       0.844

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   259/299      1.2G   0.01198  0.005601         0   0.01758         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 26.98it/s]
                 all          46          46        0.98           1       0.996       0.844

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   260/299      1.2G   0.01218  0.005501         0   0.01769         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.62it/s]
                 all          46          46        0.98           1       0.996       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   261/299      1.2G    0.0122  0.005985         0   0.01819         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.74it/s]
                 all          46          46       0.981           1       0.997       0.841

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   262/299      1.2G   0.01198  0.005875         0   0.01785         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.20it/s]
                 all          46          46       0.981           1       0.997       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   263/299      1.2G   0.01168  0.005644         0   0.01732         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.23it/s]
                 all          46          46       0.981           1       0.997       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   264/299      1.2G   0.01194  0.005768         0   0.01771         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.60it/s]
                 all          46          46       0.981           1       0.997       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   265/299      1.2G   0.01162  0.005945         0   0.01756         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.54it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.27it/s]
                 all          46          46        0.98           1       0.997       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   266/299      1.2G    0.0121    0.0057         0    0.0178         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.65it/s]
                 all          46          46       0.981           1       0.997       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   267/299      1.2G   0.01245  0.005862         0   0.01831         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.45it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.52it/s]
                 all          46          46       0.981           1       0.997       0.853

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   268/299      1.2G    0.0118  0.005494         0   0.01729         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.981           1       0.997       0.851

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   269/299      1.2G     0.012  0.005922         0   0.01792         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.66it/s]
                 all          46          46       0.981           1       0.997       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   270/299      1.2G    0.0114  0.005795         0   0.01719         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.981           1       0.996       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   271/299      1.2G   0.01212  0.005731         0   0.01785         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.60it/s]
                 all          46          46       0.981           1       0.997       0.829

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   272/299      1.2G   0.01168    0.0056         0   0.01728         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.93it/s]
                 all          46          46       0.981           1       0.997       0.845

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   273/299      1.2G   0.01158  0.005499         0   0.01708         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.08it/s]
                 all          46          46       0.981           1       0.997        0.84

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   274/299      1.2G   0.01167  0.005519         0   0.01719         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.63it/s]
                 all          46          46       0.981           1       0.997       0.843

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   275/299      1.2G   0.01167  0.005981         0   0.01765         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.37it/s]
                 all          46          46       0.981           1       0.996       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   276/299      1.2G   0.01202  0.005554         0   0.01758         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.44it/s]
                 all          46          46       0.981           1       0.996       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   277/299      1.2G   0.01106  0.005952         0   0.01701         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.91it/s]
                 all          46          46       0.981           1       0.996       0.833

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   278/299      1.2G   0.01136  0.005273         0   0.01664         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.15it/s]
                 all          46          46       0.981           1       0.996       0.845

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   279/299      1.2G   0.01086  0.005741         0    0.0166         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.52it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.63it/s]
                 all          46          46       0.981           1       0.997       0.844

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   280/299      1.2G   0.01187  0.005695         0   0.01757         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.31it/s]
                 all          46          46       0.981           1       0.997       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   281/299      1.2G   0.01126  0.005838         0    0.0171         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.58it/s]
                 all          46          46       0.981           1       0.996       0.856

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   282/299      1.2G   0.01201   0.00593         0   0.01794         0       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.93it/s]
                 all          46          46       0.981           1       0.996       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   283/299      1.2G   0.01149  0.005524         0   0.01701         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.43it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.50it/s]
                 all          46          46       0.981           1       0.997       0.846

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   284/299      1.2G   0.01213  0.005679         0   0.01781         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.981           1       0.997       0.832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   285/299      1.2G   0.01169  0.006069         0   0.01776         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.72it/s]
                 all          46          46       0.981           1       0.997       0.838

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   286/299      1.2G   0.01113  0.005176         0   0.01631         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.60it/s]
                 all          46          46       0.981           1       0.997       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   287/299      1.2G   0.01167  0.005878         0   0.01755         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.70it/s]
                 all          46          46       0.981           1       0.997       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   288/299      1.2G   0.01193  0.005812         0   0.01775         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.83it/s]
                 all          46          46       0.981           1       0.996       0.829

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   289/299      1.2G   0.01128  0.005504         0   0.01679         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.46it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.78it/s]
                 all          46          46       0.981           1       0.996       0.825

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   290/299      1.2G   0.01165  0.006058         0    0.0177         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.47it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 28.04it/s]
                 all          46          46       0.981           1       0.997       0.841

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   291/299      1.2G   0.01142  0.005446         0   0.01686         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.48it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.59it/s]
                 all          46          46       0.981           1       0.997       0.848

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   292/299      1.2G   0.01153  0.005712         0   0.01725         6       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.51it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.52it/s]
                 all          46          46       0.981           1       0.996       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   293/299      1.2G   0.01131  0.005629         0   0.01694         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.66it/s]
                 all          46          46       0.981           1       0.997       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   294/299      1.2G   0.01153  0.005571         0   0.01711         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.19it/s]
                 all          46          46       0.981           1       0.997       0.847

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   295/299      1.2G   0.01162  0.005699         0   0.01732         3       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.38it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.54it/s]
                 all          46          46       0.981           1       0.997       0.826

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   296/299      1.2G   0.01113  0.005433         0   0.01656         4       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.49it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.99it/s]
                 all          46          46       0.981           1       0.997       0.842

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   297/299      1.2G   0.01118  0.005293         0   0.01647         1       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.61it/s]
                 all          46          46       0.981           1       0.997       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   298/299      1.2G    0.0102  0.005314         0   0.01552         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 27.68it/s]
                 all          46          46       0.981           1       0.997       0.841

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   299/299      1.2G   0.01177  0.005325         0   0.01709         2       640: 100%|███████████████████████████████████████████████████████████████████| 255/255 [00:24<00:00, 10.34it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 46/46 [00:01<00:00, 24.92it/s]
                 all          46          46       0.981           1       0.997       0.835
Optimizer stripped from runs\train\exp9\weights\last.pt, 42.5MB
Optimizer stripped from runs\train\exp9\weights\best.pt, 42.5MB
300 epochs completed in 2.199 hours.


(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>
(wind_2021) F:\PytorchProject\yolov5_train_wood_LBall>

  

 

5、训练完毕,查看模型相关参数

 

 

 

6、调用mAP值最高的模型测试

python detect_2022042301.py  --weights runs/train/exp9/weights/best.pt

 

测试效果:

 

 

 

#########################

posted @ 2022-04-23 15:38  西北逍遥  阅读(136)  评论(0编辑  收藏  举报