• yolov5训练信标识别


    1、标注数据

     

    2、整理数据

     

    3、训练:修改:myvoc.yaml

    train: VOC_2022063001/train.txt
    val: VOC_2022063001/val.txt
    
    # number of classes
    nc: 1
    
    # class names
    names: ["rectz_circley"]
     

    4、开始训练

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

    训练日志:

    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>python train_20220630.py --img-size 640 --batch-size 2 --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=2, 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\\exp8', single_cls=False, sync_bn=False, total_batch_size=2, 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_2022063001\labels' for images and labels... 351 found, 0 missing, 0 empty, 0 corrupted: 100%|██████████████████████████████████████████████| 351/351 [00:00<00:00, 928.68it/s]
    New cache created: VOC_2022063001\labels.cache
    Scanning 'VOC_2022063001\labels.cache' for images and labels... 351 found, 0 missing, 0 empty, 0 corrupted: 100%|█████████████████████████████████████████████████| 351/351 [00:00<?, ?it/s]
    Scanning 'VOC_2022063001\labels' for images and labels... 63 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████| 63/63 [00:00<00:00, 1024.30it/s]
    New cache created: VOC_2022063001\labels.cache
    Scanning 'VOC_2022063001\labels.cache' for images and labels... 63 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 63/63 [00:00<?, ?it/s]Plotting labels...
    Scanning 'VOC_2022063001\labels.cache' for images and labels... 63 found, 0 missing, 0 empty, 0 corrupted: 100%|████████████████████████████████████████████████████| 63/63 [00:00<?, ?it/s]
    
    Analyzing anchors... anchors/target = 5.82, Best Possible Recall (BPR) = 1.0000
    Image sizes 640 train, 640 test
    Using 0 dataloader workers
    Logging results to runs\train\exp8
    Starting training for 300 epochs...
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         0/299     1.15G    0.1084   0.03771         0    0.1461         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:45<00:00,  1.28s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:22<00:00,  1.43it/s]
                     all          63         163     0.00359      0.0245     0.00174    0.000272
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         1/299      1.2G   0.09575   0.04342         0    0.1392         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163           0           0     0.00134    0.000279
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         2/299      1.2G   0.08582   0.04411         0    0.1299         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163           0           0     0.00899     0.00295
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         3/299      1.2G   0.08454   0.04366         0    0.1282         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.51it/s]
                     all          63         163      0.0134      0.0368     0.00772     0.00108
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         4/299      1.2G   0.08527   0.04096         0    0.1262         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163      0.0567       0.448       0.115      0.0202
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         5/299      1.2G   0.08183   0.04007         0    0.1219         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.49it/s]
                     all          63         163           0           0     0.00859     0.00128
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         6/299      1.2G   0.08581   0.04326         0    0.1291         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163           0           0      0.0208     0.00423
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         7/299      1.2G   0.07687   0.04495         0    0.1218         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.50it/s]
                     all          63         163           1     0.00613        0.35       0.114
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         8/299      1.2G   0.07667   0.03817         0    0.1148         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.216       0.503        0.22      0.0718
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
         9/299      1.2G    0.0707   0.04051         0    0.1112         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:32<00:00,  1.21s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.51it/s]
                     all          63         163       0.498       0.596       0.489        0.18
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        10/299      1.2G   0.07133   0.03595         0    0.1073         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.143        0.81        0.47       0.147
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        11/299      1.2G   0.06629   0.03715         0    0.1034         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.51it/s]
                     all          63         163       0.195       0.564       0.274       0.095
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        12/299      1.2G   0.06803     0.038         0     0.106         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.52it/s]
                     all          63         163      0.0858       0.748       0.159      0.0445
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        13/299      1.2G   0.06225    0.0328         0   0.09505         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:34<00:00,  1.22s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163        0.18       0.945       0.732       0.241
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        14/299      1.2G   0.06265   0.02996         0   0.09261         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.51it/s]
                     all          63         163        0.41       0.816       0.739       0.368
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        15/299      1.2G   0.05484    0.0286         0   0.08344         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.324       0.963       0.915       0.461
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        16/299      1.2G   0.05675   0.02609         0   0.08284         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.385       0.939       0.921       0.481
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        17/299      1.2G   0.05232   0.02552         0   0.07784         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.293       0.975        0.95       0.368
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        18/299      1.2G   0.05164   0.02573         0   0.07737         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.381       0.957       0.923       0.464
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        19/299      1.2G   0.04874   0.02386         0    0.0726        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:32<00:00,  1.21s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.311       0.982       0.958       0.519
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        20/299      1.2G   0.04867   0.02385         0   0.07252         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163         0.3       0.982        0.97       0.443
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        21/299      1.2G   0.04653   0.02368         0   0.07021        14       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.416       0.975       0.963       0.642
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        22/299      1.2G   0.04599   0.02153         0   0.06753         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:33<00:00,  1.21s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.417       0.951       0.931        0.37
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        23/299      1.2G   0.04868   0.02045         0   0.06913         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.385       0.963       0.946       0.507
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        24/299      1.2G   0.04414   0.02127         0   0.06542         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.512       0.963       0.963       0.612
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        25/299      1.2G   0.04084   0.02149         0   0.06233        13       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163        0.39       0.988       0.982       0.632
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        26/299      1.2G   0.03903   0.01964         0   0.05867         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.414       0.988       0.955       0.538
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        27/299      1.2G   0.04176    0.0199         0   0.06166         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.394       0.963        0.95       0.459
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        28/299      1.2G   0.04298   0.02041         0   0.06339        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.503       0.988        0.98       0.607
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        29/299      1.2G   0.03727   0.01945         0   0.05672         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163        0.54       0.988       0.974       0.678
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        30/299      1.2G   0.03639   0.01807         0   0.05446         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.587       0.982       0.981       0.674
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        31/299      1.2G   0.03608   0.01873         0   0.05481         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.554       0.994       0.979       0.608
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        32/299      1.2G    0.0391   0.01911         0   0.05821         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:33<00:00,  1.21s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.681       0.982       0.982       0.612
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        33/299      1.2G   0.03688   0.01868         0   0.05556         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.676       0.982        0.98       0.754
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        34/299      1.2G   0.03529   0.01851         0    0.0538         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.532           1       0.989       0.724
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        35/299      1.2G   0.03286   0.01669         0   0.04954         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.709       0.994       0.993       0.628
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        36/299      1.2G   0.03726   0.01737         0   0.05463        15       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.647           1       0.993       0.573
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        37/299      1.2G   0.02927   0.01557         0   0.04484         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163        0.62       0.994       0.994       0.734
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        38/299      1.2G   0.03219   0.01695         0   0.04914         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.697       0.994       0.994       0.681
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        39/299      1.2G   0.02943    0.0162         0   0.04563         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.672           1       0.992       0.748
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        40/299      1.2G   0.03355   0.01574         0    0.0493         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.662       0.994       0.992        0.72
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        41/299      1.2G   0.02929   0.01538         0   0.04466         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.751           1       0.991        0.77
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        42/299      1.2G   0.03034   0.01567         0   0.04601         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.607           1       0.994       0.726
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        43/299      1.2G   0.03194   0.01547         0   0.04741         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.753       0.994       0.994       0.791
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        44/299      1.2G   0.02957   0.01588         0   0.04545         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.707           1       0.994         0.8
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        45/299      1.2G   0.02578   0.01502         0    0.0408         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.776           1       0.995       0.758
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        46/299      1.2G   0.02657   0.01509         0   0.04166         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.732           1       0.995        0.71
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        47/299      1.2G   0.02984   0.01561         0   0.04545        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.702           1        0.99       0.752
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        48/299      1.2G   0.03063   0.01467         0   0.04529         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.802           1       0.991       0.757
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        49/299      1.2G   0.02695   0.01356         0   0.04051         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.66it/s]
                     all          63         163       0.836           1       0.995       0.801
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        50/299      1.2G   0.02872   0.01488         0    0.0436         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163        0.76           1       0.995       0.681
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        51/299      1.2G   0.02849   0.01487         0   0.04336         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.797           1       0.995       0.764
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        52/299      1.2G   0.02723   0.01467         0    0.0419         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163       0.828       0.994       0.992        0.78
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        53/299      1.2G   0.02627   0.01276         0   0.03903         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.808           1       0.995       0.795
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        54/299      1.2G   0.02754   0.01374         0   0.04128         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.897           1       0.995       0.808
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        55/299      1.2G   0.02344    0.0136         0   0.03704         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.846           1       0.995       0.802
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        56/299      1.2G   0.02765   0.01477         0   0.04242         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163       0.869           1       0.995       0.732
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        57/299      1.2G   0.02729   0.01387         0   0.04116         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.761           1       0.995       0.761
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        58/299      1.2G   0.02728   0.01461         0   0.04189         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.816           1       0.995       0.766
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        59/299      1.2G   0.02417   0.01315         0   0.03732         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.772           1       0.995       0.832
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        60/299      1.2G   0.02499   0.01421         0    0.0392         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.829           1       0.994       0.792
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        61/299      1.2G   0.02352   0.01253         0   0.03604         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.841           1       0.994       0.783
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        62/299      1.2G   0.02521   0.01386         0   0.03907         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.885           1       0.995       0.834
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        63/299      1.2G   0.02267   0.01216         0   0.03483         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163        0.82           1       0.994       0.851
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        64/299      1.2G   0.02453   0.01298         0   0.03751         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.852           1       0.995       0.829
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        65/299      1.2G   0.02082   0.01308         0    0.0339        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.789           1       0.995       0.828
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        66/299      1.2G   0.02358    0.0141         0   0.03768         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.881           1       0.995       0.805
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        67/299      1.2G   0.02172   0.01277         0   0.03449         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.811           1       0.995        0.84
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        68/299      1.2G   0.02512   0.01316         0   0.03829         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.839           1       0.995       0.805
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        69/299      1.2G   0.02147   0.01274         0   0.03421         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.879           1       0.995       0.867
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        70/299      1.2G    0.0216   0.01231         0   0.03391         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.853           1       0.995       0.862
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        71/299      1.2G   0.01973   0.01266         0   0.03239         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.67it/s]
                     all          63         163       0.877           1       0.995       0.854
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        72/299      1.2G   0.02392   0.01259         0   0.03651         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.874           1       0.995       0.817
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        73/299      1.2G    0.0238    0.0122         0   0.03601         0       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.833           1       0.995       0.794
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        74/299      1.2G   0.02284   0.01353         0   0.03637         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163        0.81           1       0.995       0.809
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        75/299      1.2G    0.0197   0.01161         0   0.03131         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.893           1       0.995       0.863
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        76/299      1.2G   0.02125   0.01182         0   0.03307         0       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.839           1       0.995       0.855
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        77/299      1.2G   0.02051   0.01203         0   0.03255        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.882           1       0.995       0.846
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        78/299      1.2G   0.02297    0.0126         0   0.03558         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.866           1       0.995       0.863
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        79/299      1.2G   0.01956   0.01162         0   0.03118         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.855           1       0.995       0.855
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        80/299      1.2G   0.02252   0.01257         0   0.03509         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.926           1       0.995       0.841
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        81/299      1.2G   0.02138     0.012         0   0.03338         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.895           1       0.995       0.844
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        82/299      1.2G   0.02374   0.01257         0   0.03631         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.878           1       0.995       0.834
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        83/299      1.2G    0.0198   0.01169         0   0.03149         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.912           1       0.995        0.84
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        84/299      1.2G    0.0224   0.01197         0   0.03438         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.878           1       0.995       0.809
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        85/299      1.2G   0.01954   0.01143         0   0.03098         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.871           1       0.995       0.848
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        86/299      1.2G   0.02184   0.01175         0   0.03359         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.846           1       0.995       0.852
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        87/299      1.2G   0.02109   0.01145         0   0.03254         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.924           1       0.995       0.845
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        88/299      1.2G   0.02133   0.01257         0    0.0339         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.874           1       0.995       0.825
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        89/299      1.2G   0.01851   0.01174         0   0.03025         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.894           1       0.995       0.861
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        90/299      1.2G   0.02216   0.01175         0    0.0339         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.887           1       0.996       0.863
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        91/299      1.2G   0.02025   0.01127         0   0.03152         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.912           1       0.996       0.882
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        92/299      1.2G   0.02191   0.01231         0   0.03422         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.878           1       0.996       0.842
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        93/299      1.2G   0.01932   0.01236         0   0.03168        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.887           1       0.996       0.876
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        94/299      1.2G   0.02071   0.01111         0   0.03182         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.948           1       0.996        0.87
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        95/299      1.2G   0.01793   0.01104         0   0.02897         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.895           1       0.996       0.866
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        96/299      1.2G    0.0202   0.01167         0   0.03188         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.882           1       0.995       0.866
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        97/299      1.2G   0.01832   0.01106         0   0.02938         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.899       0.994       0.995        0.87
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        98/299      1.2G   0.02133    0.0123         0   0.03363         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.64it/s]
                     all          63         163       0.921           1       0.995       0.872
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
        99/299      1.2G   0.01802   0.01126         0   0.02928         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.943           1       0.995       0.867
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       100/299      1.2G   0.01857   0.01149         0   0.03006         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.948           1       0.995       0.872
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       101/299      1.2G   0.01792   0.01085         0   0.02877         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.898           1       0.995       0.839
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       102/299      1.2G   0.02012   0.01134         0   0.03146        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.841           1       0.996       0.859
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       103/299      1.2G   0.01709   0.01071         0   0.02781         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163        0.92           1       0.996       0.893
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       104/299      1.2G   0.02067   0.01119         0   0.03186         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.922           1       0.995       0.865
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       105/299      1.2G   0.01797   0.01129         0   0.02926         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.928           1       0.995       0.868
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       106/299      1.2G   0.01836   0.01119         0   0.02955        13       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.967           1       0.996        0.89
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       107/299      1.2G   0.01707   0.01065         0   0.02772        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.968           1       0.996       0.872
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       108/299      1.2G   0.01827   0.01112         0   0.02939         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.955           1       0.996       0.896
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       109/299      1.2G   0.01746   0.01021         0   0.02767         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.951           1       0.996       0.854
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       110/299      1.2G   0.01868    0.0109         0   0.02958         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.892           1       0.995       0.892
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       111/299      1.2G   0.01624   0.01041         0   0.02665        17       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.933           1       0.996       0.874
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       112/299      1.2G   0.01849  0.009996         0   0.02848         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.884           1       0.996       0.861
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       113/299      1.2G   0.01904   0.01069         0   0.02973         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.876           1       0.996       0.881
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       114/299      1.2G   0.01878   0.01068         0   0.02946         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.878           1       0.996       0.886
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       115/299      1.2G    0.0169   0.00974         0   0.02664         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.885           1       0.996       0.869
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       116/299      1.2G    0.0186   0.01036         0   0.02896        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.872           1       0.995       0.892
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       117/299      1.2G   0.01711   0.01058         0   0.02769         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.923           1       0.995       0.889
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       118/299      1.2G   0.01684   0.01075         0   0.02759         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.937           1       0.996       0.884
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       119/299      1.2G     0.017   0.01017         0   0.02717         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.925           1       0.996       0.898
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       120/299      1.2G   0.01801   0.01119         0    0.0292        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163       0.891           1       0.996       0.891
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       121/299      1.2G   0.01599   0.01024         0   0.02624        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.949           1       0.996       0.896
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       122/299      1.2G   0.01679    0.0101         0   0.02689         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.916           1       0.996       0.885
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       123/299      1.2G   0.01507  0.009942         0   0.02501        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.927           1       0.995       0.903
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       124/299      1.2G   0.01811   0.01053         0   0.02864         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.15s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.916           1       0.995       0.864
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       125/299      1.2G   0.01677   0.01039         0   0.02716         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.957           1       0.996       0.876
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       126/299      1.2G   0.01834   0.01067         0     0.029         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.64it/s]
                     all          63         163       0.919           1       0.996       0.898
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       127/299      1.2G   0.01496  0.009085         0   0.02404         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163        0.92           1       0.996       0.889
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       128/299      1.2G   0.01582  0.009729         0   0.02555         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.866           1       0.996       0.898
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       129/299      1.2G   0.01453   0.00932         0   0.02385         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.896           1       0.996       0.891
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       130/299      1.2G    0.0177   0.01054         0   0.02824         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.909           1       0.996       0.891
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       131/299      1.2G   0.01636    0.0105         0   0.02686         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.903           1       0.996       0.899
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       132/299      1.2G   0.01779   0.01079         0   0.02859         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.893           1       0.995       0.882
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       133/299      1.2G   0.01511  0.009777         0   0.02489         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.926           1       0.996        0.89
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       134/299      1.2G   0.01741   0.01024         0   0.02765        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.918           1       0.996       0.905
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       135/299      1.2G   0.01405  0.009186         0   0.02323         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.65it/s]
                     all          63         163       0.914           1       0.996       0.909
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       136/299      1.2G    0.0174  0.009546         0   0.02694         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.934           1       0.996        0.91
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       137/299      1.2G   0.01313   0.00998         0   0.02312         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.913           1       0.996       0.896
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       138/299      1.2G   0.01617  0.009683         0   0.02585         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.949           1       0.996       0.899
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       139/299      1.2G   0.01339  0.008801         0   0.02219         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.927           1       0.996       0.911
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       140/299      1.2G   0.01508  0.009386         0   0.02446         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.913           1       0.996       0.916
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       141/299      1.2G   0.01424  0.009221         0   0.02346        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.929           1       0.996       0.911
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       142/299      1.2G    0.0148  0.009404         0    0.0242         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.917           1       0.996       0.906
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       143/299      1.2G   0.01336  0.009007         0   0.02237         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.15s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163        0.91           1       0.996       0.893
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       144/299      1.2G    0.0158  0.009598         0    0.0254         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.903           1       0.996       0.903
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       145/299      1.2G   0.01528   0.00942         0    0.0247         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.937           1       0.996       0.897
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       146/299      1.2G   0.01677  0.009501         0   0.02627         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.923           1       0.996       0.899
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       147/299      1.2G    0.0147  0.009607         0   0.02431         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.903           1       0.996       0.895
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       148/299      1.2G   0.01576   0.01002         0   0.02578         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163        0.92           1       0.997       0.902
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       149/299      1.2G   0.01455  0.009759         0   0.02431         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.64it/s]
                     all          63         163       0.911           1       0.996       0.906
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       150/299      1.2G   0.01513  0.009992         0   0.02513         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.905           1       0.996       0.912
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       151/299      1.2G   0.01367  0.009671         0   0.02334         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.931           1       0.996       0.898
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       152/299      1.2G   0.01416  0.008993         0   0.02315         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.909           1       0.996       0.924
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       153/299      1.2G   0.01344  0.008895         0   0.02234         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.898           1       0.996       0.909
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       154/299      1.2G   0.01614   0.01003         0   0.02617         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.936           1       0.996       0.905
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       155/299      1.2G   0.01419  0.009142         0   0.02333         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.908           1       0.996       0.924
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       156/299      1.2G   0.01534  0.009593         0   0.02493        13       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.948           1       0.996        0.92
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       157/299      1.2G   0.01332   0.00891         0   0.02223        18       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.944           1       0.996       0.905
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       158/299      1.2G   0.01393  0.008781         0   0.02271         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.965           1       0.996        0.91
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       159/299      1.2G   0.01281  0.008987         0    0.0218         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.52it/s]
                     all          63         163       0.938           1       0.996       0.914
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       160/299      1.2G   0.01377  0.009243         0   0.02301        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.936           1       0.996       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       161/299      1.2G   0.01315  0.009496         0   0.02264         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.941           1       0.996        0.92
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       162/299      1.2G   0.01391  0.009138         0   0.02304         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.954           1       0.996       0.919
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       163/299      1.2G   0.01265  0.009313         0   0.02196         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.948           1       0.996       0.917
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       164/299      1.2G   0.01336  0.009037         0    0.0224         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.929           1       0.996       0.918
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       165/299      1.2G   0.01197  0.008678         0   0.02065         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.934           1       0.996       0.919
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       166/299      1.2G   0.01292  0.009012         0   0.02193         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163        0.94           1       0.996       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       167/299      1.2G   0.01278  0.008537         0   0.02132         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.926           1       0.996       0.922
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       168/299      1.2G   0.01362  0.009364         0   0.02299         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.929           1       0.996       0.888
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       169/299      1.2G   0.01362  0.009658         0   0.02328         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163        0.92           1       0.997       0.918
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       170/299      1.2G   0.01395  0.009201         0   0.02315         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.921           1       0.996       0.922
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       171/299      1.2G   0.01193  0.008235         0   0.02016        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.917           1       0.996       0.916
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       172/299      1.2G   0.01256  0.008854         0   0.02142        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.952           1       0.996       0.917
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       173/299      1.2G   0.01352  0.008822         0   0.02234         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.948           1       0.996       0.911
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       174/299      1.2G   0.01365  0.009053         0   0.02271         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.929           1       0.997       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       175/299      1.2G   0.01264  0.008484         0   0.02112         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.939           1       0.996       0.919
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       176/299      1.2G   0.01364   0.00871         0   0.02235         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.948           1       0.997       0.913
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       177/299      1.2G   0.01082  0.007722         0   0.01854         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.931           1       0.997       0.925
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       178/299      1.2G   0.01204  0.008658         0    0.0207         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.917           1       0.997       0.925
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       179/299      1.2G   0.01169  0.008037         0   0.01973         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.921           1       0.996       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       180/299      1.2G   0.01265  0.008308         0   0.02096         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.935           1       0.997       0.923
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       181/299      1.2G   0.01239  0.008477         0   0.02087         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163        0.93           1       0.997       0.908
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       182/299      1.2G   0.01326  0.009177         0   0.02244         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.895           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       183/299      1.2G   0.01139  0.008324         0   0.01971         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.906           1       0.996       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       184/299      1.2G   0.01203  0.008608         0   0.02063         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.898           1       0.996       0.916
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       185/299      1.2G    0.0112  0.008475         0   0.01968         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.918           1       0.996       0.917
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       186/299      1.2G   0.01213  0.008241         0   0.02038         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.915           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       187/299      1.2G    0.0115  0.008563         0   0.02006         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.933           1       0.996       0.925
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       188/299      1.2G   0.01148  0.008161         0   0.01964        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.951           1       0.996        0.92
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       189/299      1.2G   0.01161  0.007713         0   0.01932         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.959           1       0.997       0.923
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       190/299      1.2G   0.01203  0.008528         0   0.02056        14       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.959           1       0.997       0.928
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       191/299      1.2G    0.0112  0.007965         0   0.01916         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.948           1       0.996       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       192/299      1.2G    0.0126  0.008447         0   0.02105         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.957           1       0.997       0.908
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       193/299      1.2G   0.01089  0.008046         0   0.01894         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.929           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       194/299      1.2G   0.01175  0.008012         0   0.01976         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.939           1       0.997       0.929
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       195/299      1.2G   0.01156  0.007491         0   0.01906         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.946           1       0.997       0.926
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       196/299      1.2G   0.01153  0.008496         0   0.02003         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.954           1       0.997       0.926
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       197/299      1.2G   0.01104   0.00869         0   0.01973         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.954           1       0.997       0.916
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       198/299      1.2G   0.01164  0.008244         0   0.01989         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163        0.94           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       199/299      1.2G   0.01063  0.008076         0   0.01871         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.924           1       0.996       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       200/299      1.2G   0.01182  0.008555         0   0.02037         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.926           1       0.997       0.928
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       201/299      1.2G   0.01124  0.008198         0   0.01944         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.939           1       0.997       0.923
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       202/299      1.2G    0.0125  0.008914         0   0.02141         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.926           1       0.996       0.927
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       203/299      1.2G   0.01116  0.008342         0    0.0195         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.901           1       0.997       0.921
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       204/299      1.2G   0.01144  0.008501         0   0.01994         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.888           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       205/299      1.2G   0.01062  0.007891         0   0.01851         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.884           1       0.996       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       206/299      1.2G   0.01162  0.007895         0   0.01951        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.52it/s]
                     all          63         163        0.91           1       0.997       0.927
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       207/299      1.2G   0.01042  0.007813         0   0.01824        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.881           1       0.997       0.928
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       208/299      1.2G    0.0117  0.007883         0   0.01958         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:32<00:00,  1.21s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.864           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       209/299      1.2G   0.01108  0.007684         0   0.01877         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.50it/s]
                     all          63         163       0.887           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       210/299      1.2G   0.01092  0.008009         0   0.01893         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.908           1       0.997       0.927
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       211/299      1.2G   0.01014  0.008097         0   0.01824         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.944           1       0.997       0.922
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       212/299      1.2G   0.01092  0.007589         0   0.01851        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.948           1       0.997       0.931
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       213/299      1.2G   0.01061  0.008144         0   0.01875         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.922           1       0.997       0.926
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       214/299      1.2G   0.01095  0.007866         0   0.01882         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.921           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       215/299      1.2G   0.01049   0.00792         0   0.01841         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.942           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       216/299      1.2G   0.01022  0.008117         0   0.01834         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.954           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       217/299      1.2G   0.01017  0.007571         0   0.01774         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.52it/s]
                     all          63         163       0.944           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       218/299      1.2G   0.01053  0.007811         0   0.01834         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.944           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       219/299      1.2G   0.01033  0.007384         0   0.01771         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.938           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       220/299      1.2G   0.01073  0.007553         0   0.01828         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.913           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       221/299      1.2G   0.01032  0.007828         0   0.01815         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.904           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       222/299      1.2G   0.01103  0.008149         0   0.01917         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.51it/s]
                     all          63         163       0.917           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       223/299      1.2G   0.01047  0.008219         0   0.01869         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.905           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       224/299      1.2G   0.01031  0.007853         0   0.01816         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.923           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       225/299      1.2G  0.009832  0.007462         0   0.01729         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.929           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       226/299      1.2G   0.00985  0.007521         0   0.01737         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.935           1       0.997       0.931
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       227/299      1.2G  0.009625  0.007076         0    0.0167         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.944           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       228/299      1.2G   0.01023  0.007792         0   0.01802         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.959           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       229/299      1.2G  0.009856  0.008016         0   0.01787         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.955           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       230/299      1.2G   0.01005   0.00749         0   0.01754         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.943           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       231/299      1.2G  0.009944  0.007166         0   0.01711         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.935           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       232/299      1.2G  0.009818  0.007109         0   0.01693         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.935           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       233/299      1.2G  0.009918  0.007642         0   0.01756        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:31<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.948           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       234/299      1.2G   0.01084  0.007989         0   0.01883         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.954           1       0.997       0.931
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       235/299      1.2G  0.009957  0.007768         0   0.01772         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.939           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       236/299      1.2G  0.009976  0.008071         0   0.01805        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.918           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       237/299      1.2G   0.01002  0.008165         0   0.01818         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.917           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       238/299      1.2G   0.01008  0.007776         0   0.01785         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.943           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       239/299      1.2G  0.009372  0.007678         0   0.01705         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.957           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       240/299      1.2G  0.009664  0.007535         0    0.0172        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.938           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       241/299      1.2G  0.009941  0.007418         0   0.01736        15       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.955           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       242/299      1.2G  0.009807  0.007701         0   0.01751         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.955           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       243/299      1.2G  0.009613  0.007499         0   0.01711         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163       0.959           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       244/299      1.2G  0.009916  0.007556         0   0.01747         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.959           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       245/299      1.2G  0.009485  0.007052         0   0.01654         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.954           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       246/299      1.2G   0.01055  0.007772         0   0.01833        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.954           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       247/299      1.2G  0.009682  0.007624         0   0.01731         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.946           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       248/299      1.2G  0.009124   0.00756         0   0.01668         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.944           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       249/299      1.2G  0.009417  0.006804         0   0.01622         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.935           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       250/299      1.2G  0.009844   0.00718         0   0.01702         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.63it/s]
                     all          63         163       0.927           1       0.997       0.932
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       251/299      1.2G  0.009297  0.007181         0   0.01648         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163        0.91           1       0.997       0.943
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       252/299      1.2G  0.009964   0.00743         0   0.01739        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.917           1       0.997       0.946
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       253/299      1.2G  0.009638  0.007449         0   0.01709         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.928           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       254/299      1.2G  0.009612  0.007225         0   0.01684         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.928           1       0.997       0.933
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       255/299      1.2G  0.009745  0.007395         0   0.01714         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.923           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       256/299      1.2G   0.01004  0.007589         0   0.01763         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.938           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       257/299      1.2G  0.009294  0.006998         0   0.01629         2       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.934           1       0.997       0.941
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       258/299      1.2G  0.009586  0.007529         0   0.01711        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.934           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       259/299      1.2G  0.009074  0.006977         0   0.01605        11       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.929           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       260/299      1.2G  0.009893  0.007724         0   0.01762         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163        0.93           1       0.997       0.928
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       261/299      1.2G  0.009464  0.007442         0   0.01691         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.928           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       262/299      1.2G  0.009186  0.006969         0   0.01615         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.928           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       263/299      1.2G  0.009393  0.007194         0   0.01659         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163       0.925           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       264/299      1.2G  0.009351  0.007341         0   0.01669         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.923           1       0.997       0.941
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       265/299      1.2G   0.00924  0.007056         0    0.0163         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.924           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       266/299      1.2G  0.009466  0.006929         0    0.0164         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.915           1       0.997       0.936
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       267/299      1.2G  0.009232  0.007187         0   0.01642         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:23<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.932           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       268/299      1.2G  0.009418  0.007462         0   0.01688         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.937           1       0.997       0.941
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       269/299      1.2G  0.009133  0.007575         0   0.01671         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.951           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       270/299      1.2G   0.00915  0.007261         0   0.01641         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.945           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       271/299      1.2G  0.009473  0.007435         0   0.01691         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.931           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       272/299      1.2G   0.00901  0.006592         0    0.0156         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:29<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163        0.93           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       273/299      1.2G  0.008871  0.006774         0   0.01565         3       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.935           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       274/299      1.2G  0.009282  0.007387         0   0.01667        15       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:22<00:00,  1.15s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.936           1       0.997       0.943
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       275/299      1.2G  0.009156  0.006803         0   0.01596         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.54it/s]
                     all          63         163       0.947           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       276/299      1.2G   0.00889  0.006847         0   0.01574         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.946           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       277/299      1.2G  0.008784  0.006902         0   0.01569         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.955           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       278/299      1.2G  0.009191  0.007143         0   0.01633         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.61it/s]
                     all          63         163       0.937           1       0.997       0.941
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       279/299      1.2G  0.009158  0.006583         0   0.01574         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.62it/s]
                     all          63         163        0.93           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       280/299      1.2G  0.009605  0.007015         0   0.01662        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.949           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       281/299      1.2G  0.009124   0.00727         0   0.01639         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.945           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       282/299      1.2G  0.009345  0.007158         0    0.0165         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.923           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       283/299      1.2G  0.008871  0.006863         0   0.01573         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:11<00:00,  2.67it/s]
                     all          63         163       0.935           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       284/299      1.2G  0.009203  0.007157         0   0.01636         4       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.57it/s]
                     all          63         163       0.941           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       285/299      1.2G  0.009475  0.007213         0   0.01669         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.928           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       286/299      1.2G  0.009147  0.007154         0    0.0163         6       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.19s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.55it/s]
                     all          63         163       0.921           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       287/299      1.2G   0.00893  0.007298         0   0.01623         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:30<00:00,  1.20s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.936           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       288/299      1.2G  0.009225  0.007088         0   0.01631         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.63it/s]
                     all          63         163        0.95           1       0.997       0.934
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       289/299      1.2G   0.01002  0.007264         0   0.01728         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.952           1       0.997       0.935
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       290/299      1.2G  0.009608   0.00736         0   0.01697        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.923           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       291/299      1.2G  0.009059  0.006738         0    0.0158         1       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:27<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.932           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       292/299      1.2G  0.009445  0.007021         0   0.01647        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163       0.939           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       293/299      1.2G  0.009341  0.007664         0   0.01701        10       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:25<00:00,  1.17s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.53it/s]
                     all          63         163       0.949           1       0.997       0.939
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       294/299      1.2G  0.009045  0.006704         0   0.01575        12       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.60it/s]
                     all          63         163       0.959           1       0.997       0.942
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       295/299      1.2G  0.009042  0.007148         0   0.01619         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:24<00:00,  1.16s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.944           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       296/299      1.2G  0.008864  0.006522         0   0.01539         7       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.59it/s]
                     all          63         163       0.958           1       0.997        0.94
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       297/299      1.2G  0.009304  0.007292         0    0.0166         8       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:28<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.56it/s]
                     all          63         163       0.953           1       0.997       0.938
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       298/299      1.2G  0.009035  0.007119         0   0.01615         5       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:26<00:00,  1.18s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:12<00:00,  2.58it/s]
                     all          63         163        0.95           1       0.997       0.937
    
         Epoch   gpu_mem       box       obj       cls     total   targets  img_size
       299/299      1.2G  0.008945  0.007086         0   0.01603         9       640: 100%|███████████████████████████████████████████████████████████████████| 176/176 [03:34<00:00,  1.22s/it]
                   Class      Images     Targets           P           R      mAP@.5  mAP@.5:.95: 100%|█████████████████████████████████████████████████████████| 32/32 [00:13<00:00,  2.36it/s]
                     all          63         163       0.947           1       0.997       0.932
    Optimizer stripped from runs\train\exp8\weights\last.pt, 42.5MB
    Optimizer stripped from runs\train\exp8\weights\best.pt, 42.5MB
    300 epochs completed in 18.364 hours.
    
    
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    (wind_2021) H:\PytorchProject\yolov5_train_rectangle_circle>
    

      

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

    6、调用最优模型测试

    python detect_2022070101.py  --weights runs/train/exp8/weights/best.pt --source data/img_20220701
     

     
     

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

  • 相关阅读:
    注意:MagickReadImageBlob() 引发的问题
    Notepad++ 【自动完成】与【输入时提示函数参数】互相冲突,无奈
    收藏:png8和png24的根本区别
    【物理分辨率】与【逻辑分辨率】
    算法
    算法
    Linux 用户和文件
    Oracle索引技术研究
    Linux Socket
    Linux Socket
  • 原文地址:https://www.cnblogs.com/herd/p/16435056.html
Copyright © 2020-2023  润新知