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
训练日志:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 | (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

###################################
QQ 3087438119
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
2021-07-01 IfcTranslationalStiffnessSelect
2020-07-01 IfcRationalBSplineCurveWithKnots
2019-07-01 osg HUD 前景色
2019-07-01 osg HUD 背景图片设置