训练yolov5识别木块的模型

训练yolov5识别木块的模型

标注数据:

整理数据

 

训练:(使用官方程序,不需要做别的修改,唯一修改的是:myvoc.yaml)

myvoc.yaml

train: VOC_2022042101/train.txt
val: VOC_2022042101/val.txt

# number of classes
nc: 1

# class names
names: ["wood_brick"]

 

开始训练:

python train_20220421.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_brick>
(wind_2021) F:\PytorchProject\yolov5_train_wood_brick>
(wind_2021) F:\PytorchProject\yolov5_train_wood_brick>
(wind_2021) F:\PytorchProject\yolov5_train_wood_brick>
(wind_2021) F:\PytorchProject\yolov5_train_wood_brick>
(wind_2021) F:\PytorchProject\yolov5_train_wood_brick>python train_20220421.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\\exp', 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_2022042101\labels' for images and labels... 101 found, 0 missing, 0 empty, 0 corrupted: 100%|█████████████████████████████████████████████| 101/101 [00:00<00:00, 1778.17it/s]
New cache created: VOC_2022042101\labels.cache
Scanning 'VOC_2022042101\labels.cache' for images and labels... 101 found, 0 missing, 0 empty, 0 corrupted: 100%|█████████████████████████████████████████████████| 101/101 [00:00<?, ?it/s]
Scanning 'VOC_2022042101\labels' for images and labels... 10 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████| 10/10 [00:00<00:00, 2201.04it/s]
New cache created: VOC_2022042101\labels.cache
Scanning 'VOC_2022042101\labels.cache' for images and labels... 10 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 10/10 [00:00<?, ?it/s]Plotting labels...
Scanning 'VOC_2022042101\labels.cache' for images and labels... 10 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 10/10 [00:00<?, ?it/s]

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

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     0/299     1.22G   0.08677   0.03176         0    0.1185         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:16<00:00,  6.29it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:02<00:00,  4.07it/s]
                 all          10          10           0           0     0.00279    0.000491

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     1/299      1.2G    0.0825   0.03081         0    0.1133         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.32it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.79it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     2/299      1.2G    0.0782   0.03117         0    0.1094         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.38it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.57it/s]
                 all          10          10    0.000381         0.1    0.000143     1.8e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     3/299      1.2G   0.07017   0.03095         0    0.1011         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.40it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.15it/s]
                 all          10          10           0           0    0.000216    2.82e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     4/299      1.2G   0.06627   0.02893         0    0.0952         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.24it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 24.50it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     5/299      1.2G   0.06669   0.02971         0    0.0964         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 24.87it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     6/299      1.2G   0.06986   0.02903         0    0.0989         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.55it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     7/299      1.2G   0.06689   0.03093         0   0.09781         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.09it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.42it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     8/299      1.2G   0.06944   0.03058         0       0.1         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.02it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.88it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
     9/299      1.2G   0.06584   0.03283         0   0.09867         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.09it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.95it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    10/299      1.2G   0.06787   0.02863         0    0.0965         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.00it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.10it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    11/299      1.2G   0.06356   0.03051         0   0.09407         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.12it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.99it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    12/299      1.2G   0.06624   0.03053         0   0.09677         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.89it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.10it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    13/299      1.2G   0.06843   0.03358         0     0.102         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.91it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.14it/s]
                 all          10          10           0           0     3.7e-05    1.11e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    14/299      1.2G   0.06156   0.02982         0   0.09138         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.04it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.35it/s]
                 all          10          10           0           0    9.59e-05    9.59e-06

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    15/299      1.2G   0.06269   0.02909         0   0.09178         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.01it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.81it/s]
                 all          10          10           0           0     3.7e-05     7.4e-06

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    16/299      1.2G   0.06161   0.03036         0   0.09198         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.05it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.55it/s]
                 all          10           0           0           0           0           0

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    17/299      1.2G    0.0622    0.0315         0   0.09369         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.85it/s]
                 all          10          10           0           0    0.000163    2.05e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    18/299      1.2G   0.06344   0.03036         0    0.0938         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.04it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.98it/s]
                 all          10          10           0           0    0.000382    3.82e-05

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    19/299      1.2G   0.06093   0.03213         0   0.09307         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.94it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.95it/s]
                 all          10          10           0           0    4.07e-05    8.14e-06

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    20/299      1.2G   0.06039   0.03057         0   0.09096         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.03it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.18it/s]
                 all          10          10           0           0      0.0653      0.0152

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    21/299      1.2G   0.05887   0.03047         0   0.08933         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.02it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.75it/s]
                 all          10          10           0           0     0.00653    0.000757

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    22/299      1.2G   0.05804   0.02769         0   0.08573         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.05it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 24.80it/s]
                 all          10          10           0           0      0.0247     0.00453

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    23/299      1.2G   0.05835   0.02935         0    0.0877         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.96it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.91it/s]
                 all          10          10           0           0      0.0196     0.00706

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    24/299      1.2G   0.06082   0.03046         0   0.09128         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.89it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.70it/s]
                 all          10          10           0           0      0.0233     0.00949

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    25/299      1.2G   0.05697   0.02954         0    0.0865         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.03it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.81it/s]
                 all          10          10           0           0      0.0121     0.00303

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    26/299      1.2G   0.06145   0.03069         0   0.09214         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.95it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.18it/s]
                 all          10          10           0           0      0.0127     0.00414

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    27/299      1.2G   0.05751   0.02931         0   0.08681         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.99it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.88it/s]
                 all          10          10           1         0.1       0.115      0.0128

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    28/299      1.2G   0.05941   0.02991         0   0.08932         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.93it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.62it/s]
                 all          10          10           0           0      0.0182     0.00335

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    29/299      1.2G   0.05445   0.02981         0   0.08426         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.08it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.98it/s]
                 all          10          10           0           0      0.0167     0.00549

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    30/299      1.2G   0.05744   0.02922         0   0.08666         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.03it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.36it/s]
                 all          10          10           0           0       0.019     0.00348

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    31/299      1.2G   0.05683    0.0318         0   0.08863         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.99it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.72it/s]
                 all          10          10           0           0      0.0633     0.00832

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    32/299      1.2G   0.05021   0.02807         0   0.07829         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.14it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.14it/s]
                 all          10          10           0           0        0.02     0.00549

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    33/299      1.2G   0.05513   0.02955         0   0.08468         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.05it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.52it/s]
                 all          10          10           0           0      0.0263     0.00409

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    34/299      1.2G   0.05368    0.0302         0   0.08388         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.12it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.15it/s]
                 all          10          10           0           0      0.0353      0.0141

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    35/299      1.2G   0.05648    0.0304         0   0.08688         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.99it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.70it/s]
                 all          10          10           0           0      0.0673      0.0193

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    36/299      1.2G   0.05468   0.02863         0   0.08331         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.02it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.46it/s]
                 all          10          10           0           0      0.0382      0.0169

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    37/299      1.2G    0.0533   0.02957         0   0.08288         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.08it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.59it/s]
                 all          10          10           0           0      0.0281      0.0113

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    38/299      1.2G   0.05367   0.02787         0   0.08155         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.07it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.39it/s]
                 all          10          10           0           0      0.0333      0.0137

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    39/299      1.2G   0.05505   0.03145         0    0.0865         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.86it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.17it/s]
                 all          10          10           0           0      0.0569      0.0271

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    40/299      1.2G   0.05213   0.02949         0   0.08162         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.01it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.42it/s]
                 all          10          10           0           0      0.0656      0.0176

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    41/299      1.2G   0.05401   0.03159         0    0.0856         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.59it/s]
                 all          10          10           0           0      0.0656       0.019

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    42/299      1.2G   0.04838   0.02883         0   0.07722         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.07it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.97it/s]
                 all          10          10           0           0      0.0759      0.0356

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    43/299      1.2G    0.0498   0.02992         0   0.07973         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.56it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 23.79it/s]
                 all          10          10           0           0       0.106      0.0337

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    44/299      1.2G   0.05228   0.03222         0    0.0845         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.44it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.19it/s]
                 all          10          10           0           0       0.322      0.0698

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    45/299      1.2G   0.05013   0.02995         0   0.08008         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.90it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.01it/s]
                 all          10          10           0           0       0.365       0.158

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    46/299      1.2G   0.05069   0.03319         0   0.08388         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.83it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.81it/s]
                 all          10          10           1         0.1        0.48       0.206

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    47/299      1.2G   0.05251   0.02915         0   0.08166         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.55it/s]
                 all          10          10           0           0       0.342      0.0999

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    48/299      1.2G   0.05057   0.02836         0   0.07893         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.86it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.18it/s]
                 all          10          10           1         0.1       0.549       0.293

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    49/299      1.2G   0.04374   0.02847         0   0.07221         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.16it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.59it/s]
                 all          10          10           1         0.1       0.583       0.294

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    50/299      1.2G   0.04683   0.02972         0   0.07655         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.90it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.11it/s]
                 all          10          10           1         0.1       0.557       0.271

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    51/299      1.2G   0.04453   0.02827         0    0.0728         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.96it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.98it/s]
                 all          10          10           1         0.1       0.572       0.257

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    52/299      1.2G   0.04849   0.03006         0   0.07855         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.55it/s]
                 all          10          10           1         0.1       0.569       0.256

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    53/299      1.2G   0.04452   0.02741         0   0.07193         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.68it/s]
                 all          10          10           1       0.388       0.621       0.301

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    54/299      1.2G   0.04632   0.02672         0   0.07304         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00, 10.06it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.56it/s]
                 all          10          10       0.921         0.5       0.687       0.276

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    55/299      1.2G   0.04544   0.02732         0   0.07276         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.72it/s]
                 all          10          10       0.599         0.5       0.567       0.176

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    56/299      1.2G   0.04739   0.02737         0   0.07476         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.89it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 24.65it/s]
                 all          10          10       0.899         0.4       0.753       0.374

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    57/299      1.2G   0.04421   0.02633         0   0.07054         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.61it/s]
                 all          10          10       0.828         0.3       0.649       0.147

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    58/299      1.2G   0.04691   0.02714         0   0.07405         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.11it/s]
                 all          10          10       0.562         0.5       0.423       0.091

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    59/299      1.2G    0.0456   0.02483         0   0.07042         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.20it/s]
                 all          10          10       0.481         0.7        0.71       0.278

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    60/299      1.2G   0.04838   0.02582         0    0.0742         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.08it/s]
                 all          10          10       0.581         0.8        0.77       0.268

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    61/299      1.2G   0.04424   0.02275         0   0.06698         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.26it/s]
                 all          10          10       0.311         0.8       0.527       0.186

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    62/299      1.2G   0.04415   0.02326         0   0.06741         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10       0.294         0.7       0.425       0.115

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    63/299      1.2G   0.04573   0.02246         0   0.06819         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.79it/s]
                 all          10          10       0.633       0.692       0.646       0.354

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    64/299      1.2G   0.04605   0.02245         0    0.0685         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.02it/s]
                 all          10          10       0.594         0.9       0.789       0.326

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    65/299      1.2G   0.04371   0.02275         0   0.06646         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.84it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.70it/s]
                 all          10          10       0.253         0.3       0.193      0.0261

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    66/299      1.2G   0.04212   0.02227         0   0.06439         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.08it/s]
                 all          10          10       0.158         0.4       0.355       0.146

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    67/299      1.2G    0.0433   0.02342         0   0.06672         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.31it/s]
                 all          10          10      0.0163         0.9       0.131      0.0169

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    68/299      1.2G   0.04773    0.0202         0   0.06793         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 25.61it/s]
                 all          10          10      0.0223           1        0.38       0.142

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    69/299      1.2G   0.04581   0.02097         0   0.06678         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.86it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.00it/s]
                 all          10          10     0.00886         0.7       0.136      0.0645

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    70/299      1.2G   0.04658   0.02342         0      0.07         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 26.31it/s]
                 all          10          10      0.0402         0.7       0.328      0.0912

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    71/299      1.2G   0.04076   0.02098         0   0.06174         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.25it/s]
                 all          10          10       0.102         0.9       0.658       0.205

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    72/299      1.2G   0.04038   0.01849         0   0.05887         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.453           1       0.834       0.338

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    73/299      1.2G   0.04579   0.01888         0   0.06467         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.331         0.7       0.548       0.163

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    74/299      1.2G   0.04162   0.01971         0   0.06133         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.27it/s]
                 all          10          10      0.0516         0.9        0.47       0.127

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    75/299      1.2G   0.04154   0.01904         0   0.06058         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.174           1       0.913       0.465

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    76/299      1.2G   0.04519   0.01954         0   0.06473         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.55it/s]
                 all          10          10       0.131           1       0.878       0.415

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    77/299      1.2G   0.03897   0.01894         0   0.05791         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.50it/s]
                 all          10          10       0.192           1       0.903        0.44

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    78/299      1.2G   0.04474   0.02294         0   0.06769         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.90it/s]
                 all          10          10      0.0567           1       0.366      0.0665

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    79/299      1.2G   0.04248   0.02105         0   0.06353         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.509           1       0.942       0.428

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    80/299      1.2G   0.04193   0.01865         0   0.06058         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.37it/s]
                 all          10          10       0.239           1        0.88       0.357

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    81/299      1.2G    0.0422   0.01983         0   0.06203         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.67it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.17it/s]
                 all          10          10       0.126           1       0.757       0.278

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    82/299      1.2G   0.03813   0.01921         0   0.05734         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.92it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10       0.142           1        0.86       0.371

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    83/299      1.2G   0.03947   0.01884         0   0.05832         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.20it/s]
                 all          10          10       0.337         0.9       0.845       0.387

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    84/299      1.2G   0.03692   0.02116         0   0.05808         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.637         0.9        0.73       0.274

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    85/299      1.2G   0.03635   0.01839         0   0.05473         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.11it/s]
                 all          10          10       0.417         0.9       0.857       0.469

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    86/299      1.2G   0.03769   0.01931         0     0.057         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.295           1       0.962        0.52

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    87/299      1.2G    0.0386   0.01746         0   0.05606         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10       0.338         0.9       0.862       0.521

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    88/299      1.2G   0.03965   0.01698         0   0.05663         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.65it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.115           1       0.986       0.244

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    89/299      1.2G   0.04502   0.01669         0   0.06171         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.65it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.16it/s]
                 all          10          10       0.434         0.4       0.442       0.121

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    90/299      1.2G   0.03632   0.01736         0   0.05368         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.58it/s]
                 all          10          10       0.329           1       0.937       0.508

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    91/299      1.2G   0.03471   0.01724         0   0.05195         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.00it/s]
                 all          10          10        0.34         0.9       0.764       0.286

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    92/299      1.2G   0.03685   0.01738         0   0.05423         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.64it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.44it/s]
                 all          10          10      0.0158         0.9       0.252         0.1

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    93/299      1.2G   0.03464   0.01573         0   0.05037         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.89it/s]
                 all          10          10      0.0984      0.0886       0.219       0.035

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    94/299      1.2G   0.03632    0.0152         0   0.05153         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.43it/s]
                 all          10          10       0.344         0.7       0.612       0.145

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    95/299      1.2G    0.0353   0.01403         0   0.04933         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.96it/s]
                 all          10          10       0.107           1       0.878       0.423

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    96/299      1.2G   0.03541   0.01442         0   0.04983         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.37it/s]
                 all          10          10       0.395         0.9       0.755       0.295

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    97/299      1.2G   0.03327   0.01677         0   0.05004         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.31it/s]
                 all          10          10       0.247           1       0.986       0.554

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    98/299      1.2G   0.03348   0.01557         0   0.04904         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.65it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.14it/s]
                 all          10          10       0.361         0.9       0.825       0.288

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
    99/299      1.2G   0.03017   0.01264         0    0.0428         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 11.00it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.39it/s]
                 all          10          10       0.618         0.7       0.625       0.156

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   100/299      1.2G   0.03679   0.01691         0    0.0537         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.313           1        0.89       0.149

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   101/299      1.2G   0.03839    0.0161         0   0.05449         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.81it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.291           1       0.927       0.478

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   102/299      1.2G    0.0341   0.01678         0   0.05088         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.10it/s]
                 all          10          10       0.518           1       0.995       0.638

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   103/299      1.2G   0.03087   0.01491         0   0.04578         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.37it/s]
                 all          10          10       0.413           1       0.826       0.312

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   104/299      1.2G   0.02821   0.01344         0   0.04165         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.89it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.37it/s]
                 all          10          10       0.315           1       0.995       0.528

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   105/299      1.2G   0.02977   0.01474         0   0.04452         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.179           1       0.898       0.381

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   106/299      1.2G   0.03203   0.01371         0   0.04574         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10       0.534           1       0.995       0.641

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   107/299      1.2G   0.02867   0.01339         0   0.04206         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.67it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.279           1       0.995       0.572

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   108/299      1.2G   0.02976   0.01266         0   0.04242         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.89it/s]
                 all          10          10       0.334           1       0.995       0.531

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   109/299      1.2G   0.03336   0.01368         0   0.04703         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.403           1       0.995       0.406

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   110/299      1.2G   0.03164   0.01365         0    0.0453         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.358           1       0.995       0.639

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   111/299      1.2G   0.02916   0.01256         0   0.04172         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.08it/s]
                 all          10          10       0.401           1       0.995       0.612

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   112/299      1.2G   0.02616   0.01256         0   0.03872         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.529           1       0.995       0.777

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   113/299      1.2G   0.02961   0.01307         0   0.04268         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10       0.116           1       0.977       0.563

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   114/299      1.2G   0.03499   0.01297         0   0.04796         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10       0.524           1       0.995       0.465

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   115/299      1.2G   0.03602    0.0129         0   0.04892         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.526           1       0.948       0.397

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   116/299      1.2G   0.03236   0.01351         0   0.04586         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.61it/s]
                 all          10          10       0.068         0.9       0.772       0.445

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   117/299      1.2G   0.02902     0.013         0   0.04202         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.483           1       0.995       0.594

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   118/299      1.2G   0.02745   0.01289         0   0.04033         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10        0.39           1       0.995       0.665

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   119/299      1.2G    0.0282   0.01368         0   0.04188         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.65it/s]
                 all          10          10        0.38           1       0.995       0.645

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   120/299      1.2G   0.02693   0.01164         0   0.03857         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.373           1       0.995       0.723

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   121/299      1.2G   0.03581   0.01376         0   0.04957         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10       0.412       0.491       0.472        0.12

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   122/299      1.2G   0.03414    0.0123         0   0.04644         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.93it/s]
                 all          10          10       0.611           1       0.995       0.541

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   123/299      1.2G   0.03148     0.013         0   0.04448         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.532           1       0.995        0.75

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   124/299      1.2G   0.02525   0.01207         0   0.03732         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.324           1       0.986       0.728

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   125/299      1.2G   0.02958   0.01337         0   0.04295         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.325           1       0.995       0.718

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   126/299      1.2G    0.0283    0.0119         0    0.0402         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.44it/s]
                 all          10          10       0.525           1       0.995       0.624

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   127/299      1.2G   0.03028    0.0126         0   0.04288         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.522           1       0.995       0.703

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   128/299      1.2G   0.02681   0.01131         0   0.03812         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.84it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.494           1       0.995       0.579

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   129/299      1.2G   0.02702    0.0131         0   0.04012         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.542           1       0.995       0.713

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   130/299      1.2G   0.02596   0.01245         0   0.03841         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.18it/s]
                 all          10          10       0.492           1       0.995       0.647

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   131/299      1.2G   0.02817   0.01315         0   0.04131         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.64it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.578           1       0.995       0.547

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   132/299      1.2G    0.0284     0.013         0    0.0414         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.10it/s]
                 all          10          10       0.435           1       0.995       0.578

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   133/299      1.2G   0.02801   0.01165         0   0.03966         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.96it/s]
                 all          10          10       0.536           1       0.995       0.608

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   134/299      1.2G     0.026   0.01177         0   0.03778         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.79it/s]
                 all          10          10       0.585         0.8       0.884       0.354

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   135/299      1.2G   0.02574   0.01226         0     0.038         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.65it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.11it/s]
                 all          10          10       0.188         0.9        0.89       0.602

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   136/299      1.2G    0.0211   0.01045         0   0.03155         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.568           1       0.995       0.732

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   137/299      1.2G   0.02307   0.01115         0   0.03422         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10        0.47           1       0.995       0.691

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   138/299      1.2G   0.02353     0.011         0   0.03453         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.83it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.593           1       0.995       0.665

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   139/299      1.2G   0.02405   0.01041         0   0.03445         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.85it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.73it/s]
                 all          10          10       0.541           1       0.995       0.723

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   140/299      1.2G   0.02388   0.01306         0   0.03695         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.88it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.409           1       0.995       0.756

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   141/299      1.2G   0.02327   0.01006         0   0.03334         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.44it/s]
                 all          10          10       0.546           1       0.995       0.657

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   142/299      1.2G   0.02441   0.01114         0   0.03555         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.567           1       0.995       0.764

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   143/299      1.2G   0.02398   0.01231         0   0.03629         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.79it/s]
                 all          10          10        0.46           1       0.995       0.708

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   144/299      1.2G   0.02394   0.01053         0   0.03448         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.93it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.44it/s]
                 all          10          10       0.511           1       0.995       0.749

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   145/299      1.2G   0.02745   0.01238         0   0.03983         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.23it/s]
                 all          10          10       0.427           1       0.995       0.474

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   146/299      1.2G   0.03094   0.01167         0   0.04261         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.31it/s]
                 all          10          10       0.583           1       0.995       0.638

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   147/299      1.2G   0.02484  0.009479         0   0.03432         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.02it/s]
                 all          10          10       0.699           1       0.995       0.717

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   148/299      1.2G   0.02084   0.01085         0    0.0317         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.91it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10        0.16           1       0.995       0.706

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   149/299      1.2G   0.02386   0.01174         0   0.03561         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.69it/s]
                 all          10          10       0.495           1       0.995       0.756

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   150/299      1.2G   0.02386   0.01208         0   0.03594         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.55it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.44it/s]
                 all          10          10       0.516           1       0.995       0.637

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   151/299      1.2G   0.02311   0.01092         0   0.03403         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.528           1       0.995       0.703

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   152/299      1.2G   0.02499   0.01083         0   0.03581         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.14it/s]
                 all          10          10       0.242           1       0.995       0.604

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   153/299      1.2G   0.02372    0.0104         0   0.03412         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.67it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.50it/s]
                 all          10          10       0.518           1       0.995        0.58

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   154/299      1.2G   0.02239  0.009939         0   0.03233         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.20it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.601           1       0.995       0.768

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   155/299      1.2G   0.02062  0.009615         0   0.03023         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.88it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.09it/s]
                 all          10          10       0.268           1       0.995       0.517

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   156/299      1.2G   0.02029    0.0109         0   0.03119         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10        0.56           1       0.995       0.665

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   157/299      1.2G   0.02114   0.01114         0   0.03228         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.24it/s]
                 all          10          10       0.584           1       0.995       0.756

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   158/299      1.2G   0.02101   0.01047         0   0.03148         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.644           1       0.995       0.799

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   159/299      1.2G   0.02024  0.009926         0   0.03016         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.89it/s]
                 all          10          10       0.342           1       0.995       0.715

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   160/299      1.2G   0.02208   0.01029         0   0.03237         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.14it/s]
                 all          10          10       0.558           1       0.995       0.753

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   161/299      1.2G   0.02164   0.01084         0   0.03248         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.93it/s]
                 all          10          10       0.679           1       0.995       0.765

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   162/299      1.2G   0.01934  0.009789         0   0.02913         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.23it/s]
                 all          10          10       0.639           1       0.995       0.815

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   163/299      1.2G   0.01958   0.01043         0   0.03001         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.87it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.515           1       0.995        0.79

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   164/299      1.2G   0.02018    0.0102         0   0.03038         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.651           1       0.995       0.756

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   165/299      1.2G   0.02279   0.01083         0   0.03362         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.57it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.31it/s]
                 all          10          10       0.773           1       0.995       0.845

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   166/299      1.2G   0.02174    0.0101         0   0.03183         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.90it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.618           1       0.995        0.63

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   167/299      1.2G   0.02286  0.009895         0   0.03275         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10       0.615           1       0.995       0.734

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   168/299      1.2G    0.0231  0.009968         0   0.03307         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.667           1       0.995       0.772

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   169/299      1.2G   0.02104   0.01003         0   0.03107         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10       0.508           1       0.995       0.737

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   170/299      1.2G   0.02333    0.0111         0   0.03444         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.37it/s]
                 all          10          10       0.601           1       0.995       0.822

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   171/299      1.2G   0.02017   0.01037         0   0.03053         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.67it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.63it/s]
                 all          10          10       0.485           1       0.995       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   172/299      1.2G   0.01991  0.009718         0   0.02963         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.02it/s]
                 all          10          10       0.368           1       0.995       0.711

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   173/299      1.2G   0.02355   0.01098         0   0.03453         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.632           1       0.995       0.728

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   174/299      1.2G   0.02327  0.009727         0   0.03299         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.30it/s]
                 all          10          10       0.763           1       0.995       0.693

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   175/299      1.2G   0.02163   0.00976         0   0.03139         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.30it/s]
                 all          10          10       0.623           1       0.995       0.782

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   176/299      1.2G   0.02238   0.01011         0   0.03249         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10       0.669           1       0.995       0.762

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   177/299      1.2G   0.02282   0.01005         0   0.03287         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.61it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.701           1       0.995       0.884

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   178/299      1.2G   0.02077  0.009801         0   0.03057         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.26it/s]
                 all          10          10       0.719           1       0.995       0.814

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   179/299      1.2G   0.01846  0.008958         0   0.02742         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.347           1       0.995       0.758

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   180/299      1.2G   0.02216   0.01035         0   0.03251         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.238           1       0.986       0.739

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   181/299      1.2G   0.02082    0.0101         0   0.03093         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10       0.515           1       0.995       0.763

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   182/299      1.2G   0.02078  0.009775         0   0.03056         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.547           1       0.995       0.779

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   183/299      1.2G   0.02045   0.01028         0   0.03073         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.37it/s]
                 all          10          10        0.51           1       0.995       0.807

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   184/299      1.2G   0.01869  0.008737         0   0.02743         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10       0.526           1       0.995       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   185/299      1.2G   0.01873   0.01061         0   0.02934         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10        0.64           1       0.995       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   186/299      1.2G   0.01873   0.00981         0   0.02854         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.37it/s]
                 all          10          10       0.771           1       0.995       0.848

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   187/299      1.2G   0.02005   0.01072         0   0.03076         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.726           1       0.995       0.788

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   188/299      1.2G   0.01647  0.008417         0   0.02488         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.324           1       0.995       0.753

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   189/299      1.2G   0.01898  0.009802         0   0.02878         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.281           1       0.995       0.808

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   190/299      1.2G   0.01981  0.009799         0   0.02961         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.88it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.51it/s]
                 all          10          10       0.698           1       0.995       0.715

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   191/299      1.2G   0.02067  0.008446         0   0.02912         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.92it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.89it/s]
                 all          10          10       0.639           1       0.995       0.788

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   192/299      1.2G   0.02029  0.009301         0   0.02959         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.773           1       0.995       0.798

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   193/299      1.2G   0.01885  0.009072         0   0.02793         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.23it/s]
                 all          10          10       0.719           1       0.995       0.827

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   194/299      1.2G   0.01788  0.009644         0   0.02752         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.284           1       0.995       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   195/299      1.2G   0.01877  0.009076         0   0.02784         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:10<00:00,  9.90it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.56it/s]
                 all          10          10       0.852           1       0.995       0.796

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   196/299      1.2G   0.01886  0.009589         0   0.02845         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.12it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.855           1       0.995       0.839

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   197/299      1.2G   0.01975  0.008774         0   0.02852         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.72it/s]
                 all          10          10       0.727           1       0.995       0.754

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   198/299      1.2G   0.01845  0.009808         0   0.02826         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.696           1       0.995       0.834

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   199/299      1.2G   0.01824  0.009638         0   0.02788         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.43it/s]
                 all          10          10       0.659           1       0.995       0.851

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   200/299      1.2G   0.01774  0.009005         0   0.02675         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.67it/s]
                 all          10          10       0.652           1       0.995       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   201/299      1.2G   0.01921  0.009709         0   0.02892         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.838           1       0.995       0.821

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   202/299      1.2G   0.01931  0.008493         0   0.02781         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.66it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.814           1       0.995       0.765

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   203/299      1.2G   0.02126   0.00953         0   0.03079         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.651           1       0.995       0.812

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   204/299      1.2G   0.01773  0.008831         0   0.02656         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.617           1       0.995       0.728

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   205/299      1.2G    0.0186  0.008972         0   0.02758         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.85it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.03it/s]
                 all          10          10       0.552           1       0.995       0.763

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   206/299      1.2G   0.02048  0.009363         0   0.02984         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.26it/s]
                 all          10          10       0.386           1       0.995       0.816

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   207/299      1.2G   0.02063  0.009222         0   0.02986         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.835           1       0.995       0.768

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   208/299      1.2G   0.02321   0.00956         0   0.03277         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.37it/s]
                 all          10          10       0.599           1       0.995       0.809

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   209/299      1.2G   0.02015  0.009586         0   0.02974         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.23it/s]
                 all          10          10       0.763           1       0.995       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   210/299      1.2G   0.01687  0.008539         0   0.02541         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.30it/s]
                 all          10          10       0.636           1       0.995       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   211/299      1.2G   0.01951  0.008862         0   0.02838         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.692           1       0.995       0.815

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   212/299      1.2G    0.0171  0.009033         0   0.02614         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.63it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.43it/s]
                 all          10          10       0.623           1       0.995       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   213/299      1.2G   0.01738   0.01013         0   0.02751         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10        0.57           1       0.995       0.852

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   214/299      1.2G   0.01613  0.008636         0   0.02476         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10        0.51           1       0.995        0.86

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   215/299      1.2G    0.0164  0.008585         0   0.02498         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.64it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.37it/s]
                 all          10          10        0.55           1       0.995       0.858

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   216/299      1.2G   0.01688  0.009142         0   0.02602         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.24it/s]
                 all          10          10       0.417           1       0.995       0.828

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   217/299      1.2G   0.01646  0.009388         0   0.02585         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.64it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.669           1       0.995       0.758

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   218/299      1.2G   0.01814  0.008473         0   0.02661         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.43it/s]
                 all          10          10       0.718           1       0.995       0.849

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   219/299      1.2G   0.01776  0.009415         0   0.02717         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.603           1       0.995       0.812

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   220/299      1.2G   0.01768  0.008748         0   0.02643         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.60it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10       0.661           1       0.995       0.867

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   221/299      1.2G    0.0142   0.00787         0   0.02207         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10       0.353           1       0.995       0.857

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   222/299      1.2G   0.01627  0.009467         0   0.02574         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.51it/s]
                 all          10          10       0.259           1       0.978       0.805

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   223/299      1.2G   0.01524  0.008654         0   0.02389         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.44it/s]
                 all          10          10        0.73           1       0.995       0.863

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   224/299      1.2G   0.01619  0.008565         0   0.02476         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.43it/s]
                 all          10          10       0.702           1       0.995       0.869

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   225/299      1.2G   0.01787  0.009051         0   0.02692         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.24it/s]
                 all          10          10       0.645           1       0.995       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   226/299      1.2G   0.01681  0.008319         0   0.02513         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.30it/s]
                 all          10          10       0.774           1       0.995        0.75

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   227/299      1.2G   0.01787  0.008711         0   0.02658         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.30it/s]
                 all          10          10       0.748           1       0.995        0.88

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   228/299      1.2G   0.01795  0.008669         0   0.02662         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.651           1       0.995       0.798

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   229/299      1.2G   0.01665  0.008473         0   0.02512         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.84it/s]
                 all          10          10        0.66           1       0.995       0.831

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   230/299      1.2G   0.01619  0.008515         0    0.0247         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.72it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.18it/s]
                 all          10          10       0.701           1       0.995       0.821

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   231/299      1.2G   0.01546  0.008537         0     0.024         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.50it/s]
                 all          10          10       0.633           1       0.995       0.855

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   232/299      1.2G   0.01685  0.008519         0   0.02537         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.84it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.20it/s]
                 all          10          10       0.604           1       0.995       0.854

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   233/299      1.2G   0.01564  0.007809         0   0.02345         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.63it/s]
                 all          10          10       0.708           1       0.995       0.852

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   234/299      1.2G   0.01495  0.008027         0   0.02298         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.44it/s]
                 all          10          10       0.777           1       0.995        0.86

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   235/299      1.2G   0.01505  0.007394         0   0.02244         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.741           1       0.995       0.756

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   236/299      1.2G   0.01608  0.008645         0   0.02473         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.785           1       0.995       0.846

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   237/299      1.2G   0.01615  0.007651         0    0.0238         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.772           1       0.995       0.838

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   238/299      1.2G    0.0164   0.00884         0   0.02524         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10       0.687           1       0.995       0.861

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   239/299      1.2G   0.01571  0.008459         0   0.02417         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.688           1       0.995       0.829

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   240/299      1.2G   0.01929  0.009014         0   0.02831         7       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.485           1       0.995       0.867

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   241/299      1.2G   0.01535  0.007995         0   0.02334         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.23it/s]
                 all          10          10       0.693           1       0.995       0.903

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   242/299      1.2G   0.01601   0.00783         0   0.02384         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.16it/s]
                 all          10          10       0.616           1       0.995       0.847

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   243/299      1.2G   0.01548  0.008059         0   0.02354         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.79it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.43it/s]
                 all          10          10        0.62           1       0.995       0.885

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   244/299      1.2G   0.01526  0.007977         0   0.02324         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.68it/s]
                 all          10          10       0.721           1       0.995       0.878

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   245/299      1.2G   0.01404  0.007861         0    0.0219         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.64it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.99it/s]
                 all          10          10       0.694           1       0.995       0.873

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   246/299      1.2G   0.01442  0.007814         0   0.02223         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.61it/s]
                 all          10          10       0.652           1       0.995       0.876

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   247/299      1.2G   0.01552  0.007291         0   0.02281         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.86it/s]
                 all          10          10       0.706           1       0.995       0.858

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   248/299      1.2G   0.01557   0.00853         0    0.0241         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.81it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.723           1       0.995       0.871

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   249/299      1.2G   0.01759  0.008727         0   0.02632         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.90it/s]
                 all          10          10       0.774           1       0.995       0.836

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   250/299      1.2G   0.01492  0.008161         0   0.02308         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.08it/s]
                 all          10          10       0.628           1       0.995       0.862

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   251/299      1.2G   0.01468  0.007931         0   0.02261         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.85it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.10it/s]
                 all          10          10       0.459           1       0.995       0.835

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   252/299      1.2G   0.01549  0.008106         0   0.02359         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.63it/s]
                 all          10          10        0.72           1       0.995       0.882

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   253/299      1.2G   0.01467   0.00746         0   0.02213         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.83it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.50it/s]
                 all          10          10       0.672           1       0.995       0.851

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   254/299      1.2G   0.01565   0.00819         0   0.02384         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.82it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.25it/s]
                 all          10          10       0.675           1       0.995       0.812

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   255/299      1.2G   0.01562  0.007717         0   0.02334         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.94it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.765           1       0.995       0.893

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   256/299      1.2G   0.01694  0.008992         0   0.02594         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.63it/s]
                 all          10          10       0.748           1       0.995       0.848

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   257/299      1.2G   0.01484  0.008849         0   0.02369         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.65it/s]
                 all          10          10       0.622           1       0.995       0.872

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   258/299      1.2G   0.01517  0.007538         0    0.0227         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 27.22it/s]
                 all          10          10       0.769           1       0.995       0.875

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   259/299      1.2G   0.01452  0.008674         0   0.02319         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.70it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.601           1       0.995       0.826

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   260/299      1.2G   0.01523  0.007606         0   0.02284         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.98it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.03it/s]
                 all          10          10       0.666           1       0.995       0.883

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   261/299      1.2G   0.01407  0.007642         0   0.02171         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.05it/s]
                 all          10          10       0.674           1       0.995       0.878

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   262/299      1.2G   0.01311   0.00823         0   0.02134         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.83it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.43it/s]
                 all          10          10       0.679           1       0.995       0.871

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   263/299      1.2G   0.01283  0.007693         0   0.02053         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.65it/s]
                 all          10          10       0.566           1       0.995       0.868

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   264/299      1.2G    0.0134  0.007983         0   0.02138         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.78it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.16it/s]
                 all          10          10       0.667           1       0.995       0.889

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   265/299      1.2G   0.01456  0.008045         0    0.0226         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.51it/s]
                 all          10          10        0.67           1       0.995       0.871

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   266/299      1.2G   0.01437  0.008276         0   0.02265         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.673           1       0.995       0.875

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   267/299      1.2G   0.01521  0.008528         0   0.02374         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.56it/s]
                 all          10          10       0.678           1       0.995       0.871

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   268/299      1.2G   0.01375  0.007897         0   0.02165         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.673           1       0.995       0.864

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   269/299      1.2G   0.01415  0.007981         0   0.02213         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.26it/s]
                 all          10          10       0.536           1       0.995       0.848

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   270/299      1.2G   0.01284  0.007975         0   0.02081         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.31it/s]
                 all          10          10       0.667           1       0.995       0.899

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   271/299      1.2G   0.01388  0.007457         0   0.02134         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.93it/s]
                 all          10          10       0.651           1       0.995       0.869

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   272/299      1.2G   0.01436  0.007879         0   0.02224         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.03it/s]
                 all          10          10       0.662           1       0.995       0.883

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   273/299      1.2G    0.0123   0.00715         0   0.01945         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.69it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.639           1       0.995        0.87

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   274/299      1.2G   0.01309  0.007879         0   0.02097         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.31it/s]
                 all          10          10       0.645           1       0.995       0.868

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   275/299      1.2G   0.01419  0.008412         0   0.02261         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.83it/s]
                 all          10          10       0.632           1       0.995       0.875

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   276/299      1.2G   0.01512   0.00756         0   0.02268         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.65it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.56it/s]
                 all          10          10       0.723           1       0.995       0.875

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   277/299      1.2G   0.01255  0.007347         0    0.0199         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.87it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.25it/s]
                 all          10          10       0.733           1       0.995       0.854

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   278/299      1.2G   0.01409   0.00788         0   0.02197         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.68it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.63it/s]
                 all          10          10       0.794           1       0.995       0.837

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   279/299      1.2G   0.01343  0.007415         0   0.02084         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10       0.755           1       0.995       0.859

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   280/299      1.2G   0.01323  0.007071         0   0.02031         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.10it/s]
                 all          10          10       0.801           1       0.995       0.883

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   281/299      1.2G   0.01421  0.008154         0   0.02236         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.74it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10       0.683           1       0.995       0.859

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   282/299      1.2G   0.01762  0.008583         0   0.02621         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.96it/s]
                 all          10          10        0.78           1       0.995       0.856

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   283/299      1.2G   0.01483  0.008391         0   0.02322         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.16it/s]
                 all          10          10       0.728           1       0.995        0.88

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   284/299      1.2G   0.01425  0.007544         0    0.0218         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.84it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.24it/s]
                 all          10          10       0.771           1       0.995       0.863

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   285/299      1.2G   0.01424  0.007437         0   0.02168         0       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.58it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.74it/s]
                 all          10          10       0.843           1       0.995       0.864

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   286/299      1.2G   0.01493  0.007423         0   0.02235         2       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.73it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.25it/s]
                 all          10          10       0.808           1       0.995       0.886

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   287/299      1.2G   0.01356  0.008157         0   0.02171         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 30.30it/s]
                 all          10          10       0.764           1       0.995       0.874

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   288/299      1.2G   0.01429  0.007776         0   0.02207         4       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.77it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.93it/s]
                 all          10          10       0.846           1       0.995       0.876

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   289/299      1.2G    0.0144   0.00797         0   0.02237         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.11it/s]
                 all          10          10       0.838           1       0.995       0.868

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   290/299      1.2G   0.01492  0.007494         0   0.02241         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.11it/s]
                 all          10          10       0.844           1       0.995       0.888

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   291/299      1.2G   0.01308  0.007003         0   0.02009         6       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.84it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.80it/s]
                 all          10          10       0.787           1       0.995       0.852

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   292/299      1.2G    0.0142  0.009024         0   0.02322         3       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.53it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.37it/s]
                 all          10          10        0.79           1       0.995       0.881

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   293/299      1.2G   0.01443  0.007531         0   0.02196         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.59it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.43it/s]
                 all          10          10       0.778           1       0.995       0.907

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   294/299      1.2G   0.01366  0.007399         0   0.02105         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.71it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.12it/s]
                 all          10          10       0.723           1       0.995       0.877

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   295/299      1.2G   0.01484  0.007494         0   0.02233         5       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.62it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.93it/s]
                 all          10          10       0.781           1       0.995       0.884

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   296/299      1.2G    0.0128  0.007501         0    0.0203         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.85it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.61it/s]
                 all          10          10       0.776           1       0.995       0.879

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   297/299      1.2G   0.01292  0.006769         0   0.01968         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.75it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 29.76it/s]
                 all          10          10       0.728           1       0.995       0.869

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   298/299      1.2G     0.013  0.007552         0   0.02055         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.76it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 28.62it/s]
                 all          10          10       0.727           1       0.995       0.883

     Epoch   gpu_mem       box       obj       cls     total   targets  img_size
   299/299      1.2G   0.01207  0.007388         0   0.01946         1       640: 100%|███████████████████████████████████████████████████████████████████| 101/101 [00:09<00:00, 10.80it/s]
               Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 10/10 [00:00<00:00, 22.14it/s]
                 all          10          10       0.733           1       0.995       0.871
Optimizer stripped from runs\train\exp\weights\last.pt, 42.5MB
Optimizer stripped from runs\train\exp\weights\best.pt, 42.5MB
300 epochs completed in 0.856 hours.


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

 

模型参数变化:

 

 

 

调用模型:

python detect_2022042101.py  --weights runs/train/exp/weights/best.pt

 

 

 

 

 

 

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

posted @ 2022-04-21 16:13  西北逍遥  阅读(97)  评论(0编辑  收藏  举报