yolov5训练洞口检测模型
yolov5训练洞口检测模型
1、标注数据
2、整理数据
3、训练:修改:myvoc.yaml
4、开始训练
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 | (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole>python train_20220921.py - - batch - size 2 - - epochs 300 - - data . / data / myvoc.yaml - - cfg . / models / yolov5x.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 / yolov5x.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\\exp4 ', 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 8800 models.common.Focus [ 3 , 80 , 3 ] 1 - 1 1 115520 models.common.Conv [ 80 , 160 , 3 , 2 ] 2 - 1 1 309120 models.common.C3 [ 160 , 160 , 4 ] 3 - 1 1 461440 models.common.Conv [ 160 , 320 , 3 , 2 ] 4 - 1 1 3285760 models.common.C3 [ 320 , 320 , 12 ] 5 - 1 1 1844480 models.common.Conv [ 320 , 640 , 3 , 2 ] 6 - 1 1 13125120 models.common.C3 [ 640 , 640 , 12 ] 7 - 1 1 7375360 models.common.Conv [ 640 , 1280 , 3 , 2 ] 8 - 1 1 4099840 models.common.SPP [ 1280 , 1280 , [ 5 , 9 , 13 ]] 9 - 1 1 19676160 models.common.C3 [ 1280 , 1280 , 4 , False ] 10 - 1 1 820480 models.common.Conv [ 1280 , 640 , 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 5332480 models.common.C3 [ 1280 , 640 , 4 , False ] 14 - 1 1 205440 models.common.Conv [ 640 , 320 , 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 1335040 models.common.C3 [ 640 , 320 , 4 , False ] 18 - 1 1 922240 models.common.Conv [ 320 , 320 , 3 , 2 ] 19 [ - 1 , 14 ] 1 0 models.common.Concat [ 1 ] 20 - 1 1 4922880 models.common.C3 [ 640 , 640 , 4 , False ] 21 - 1 1 3687680 models.common.Conv [ 640 , 640 , 3 , 2 ] 22 [ - 1 , 10 ] 1 0 models.common.Concat [ 1 ] 23 - 1 1 19676160 models.common.C3 [ 1280 , 1280 , 4 , False ] 24 [ 17 , 20 , 23 ] 1 40374 models.yolo.Detect [ 1 , [[ 10 , 13 , 16 , 30 , 33 , 23 ], [ 30 , 61 , 62 , 45 , 59 , 119 ], [ 116 , 90 , 156 , 198 , 373 , 326 ]], [ 320 , 640 , 1280 ]] Model Summary: 607 layers, 87244374 parameters, 87244374 gradients, 217.3 GFLOPS Transferred 59 / 794 items from yolov5s.pt Scaled weight_decay = 0.0005 Optimizer groups: 134 .bias, 134 conv.weight, 131 other Scanning 'VOC_2022092003\labels' for images and labels... 141 found, 0 missing, 0 empty, 0 corrupted: 100 % |█████████████████████████████████████████████| 141 / 141 [ 00 : 00 < 00 : 00 , 1062.92it / s] New cache created: VOC_2022092003\labels.cache Scanning 'VOC_2022092003\labels' for images and labels... 26 found, 0 missing, 0 empty, 0 corrupted: 100 % |████████████████████████████████████████████████| 26 / 26 [ 00 : 00 < 00 : 00 , 1091.97it / s] New cache created: VOC_2022092003\labels.cache | 0 / 26 [ 00 : 00 <?, ?it / s] Plotting labels... 092003 \labels.cache' for images and labels... 26 found, 0 missing, 0 empty, 0 corrupted: 100 % |████████████████████████████████████████████████████| 26 / 26 [ 00 : 00 <?, ?it / s] Scanning 'VOC_2022092003\labels.cache' for images and labels... 141 found, 0 missing, 0 empty, 0 corrupted: 100 % |█████████████████████████████████████████████████| 141 / 141 [ 00 : 00 <?, ?it / s] Scanning 'VOC_2022092003\labels.cache' for images and labels... 26 found, 0 missing, 0 empty, 0 corrupted: 100 % |████████████████████████████████████████████████████| 26 / 26 [ 00 : 00 <?, ?it / s] Analyzing anchors... anchors / target = 5.96 , Best Possible Recall (BPR) = 1.0000 Image sizes 640 train, 640 test Using 0 dataloader workers Logging results to runs\train\exp4 Starting training for 300 epochs... Epoch gpu_mem box obj cls total targets img_size 0 / 299 2.66G 0.1137 0.05833 0 0.172 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 23 < 00 : 00 , 1.17s / it] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 07 < 00 : 00 , 1.74it / s] all 26 94 0 0 2.24e - 06 2.24e - 07 Epoch gpu_mem box obj cls total targets img_size 1 / 299 3.35G 0.1046 0.06442 0 0.169 0 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.25it / s] all 26 94 0 0 0.000631 0.000134 Epoch gpu_mem box obj cls total targets img_size 2 / 299 3.35G 0.09972 0.07098 0 0.1707 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.33it / s] all 26 94 0 0 0.000851 0.000241 Epoch gpu_mem box obj cls total targets img_size 3 / 299 3.35G 0.09711 0.06856 0 0.1657 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.28it / s] all 26 94 0 0 0.000958 0.000221 Epoch gpu_mem box obj cls total targets img_size 4 / 299 3.35G 0.09643 0.0638 0 0.1602 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.06it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 04 < 00 : 00 , 3.21it / s] all 26 94 0 0 0.00193 0.000386 Epoch gpu_mem box obj cls total targets img_size 5 / 299 3.35G 0.09608 0.07338 0 0.1695 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.41it / s] all 26 94 0 0 0.00169 0.000353 Epoch gpu_mem box obj cls total targets img_size 6 / 299 3.35G 0.09642 0.07608 0 0.1725 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0 0 0.00231 0.000476 Epoch gpu_mem box obj cls total targets img_size 7 / 299 3.35G 0.09439 0.07334 0 0.1677 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.45it / s] all 26 94 0 0 0.00132 0.000363 Epoch gpu_mem box obj cls total targets img_size 8 / 299 3.35G 0.09407 0.07223 0 0.1663 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.48it / s] all 26 94 0 0 0.00156 0.000384 Epoch gpu_mem box obj cls total targets img_size 9 / 299 3.35G 0.09309 0.07008 0 0.1632 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0 0 0.00187 0.000456 Epoch gpu_mem box obj cls total targets img_size 10 / 299 3.35G 0.09273 0.07103 0 0.1638 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.46it / s] all 26 94 0 0 0.00117 0.000315 Epoch gpu_mem box obj cls total targets img_size 11 / 299 3.35G 0.09433 0.07464 0 0.169 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.40it / s] all 26 94 0 0 0.00195 0.00043 Epoch gpu_mem box obj cls total targets img_size 12 / 299 3.35G 0.09323 0.07166 0 0.1649 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0 0 0.00872 0.00201 Epoch gpu_mem box obj cls total targets img_size 13 / 299 3.35G 0.09121 0.07101 0 0.1622 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.304 0.0213 0.0546 0.0173 Epoch gpu_mem box obj cls total targets img_size 14 / 299 3.35G 0.09191 0.06716 0 0.1591 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.47it / s] all 26 94 0.232 0.148 0.126 0.0208 Epoch gpu_mem box obj cls total targets img_size 15 / 299 3.35G 0.09261 0.0619 0 0.1545 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.44it / s] all 26 94 0.134 0.106 0.0625 0.0118 Epoch gpu_mem box obj cls total targets img_size 16 / 299 3.35G 0.09413 0.05803 0 0.1522 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.46it / s] all 26 94 0 0 0.0359 0.00527 Epoch gpu_mem box obj cls total targets img_size 17 / 299 3.35G 0.09076 0.06381 0 0.1546 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.041 0.213 0.0355 0.00509 Epoch gpu_mem box obj cls total targets img_size 18 / 299 3.35G 0.09025 0.06554 0 0.1558 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.39it / s] all 26 94 0.104 0.117 0.0708 0.0152 Epoch gpu_mem box obj cls total targets img_size 19 / 299 3.35G 0.09172 0.0626 0 0.1543 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.37it / s] all 26 94 0 0 0.0077 0.00147 Epoch gpu_mem box obj cls total targets img_size 20 / 299 3.35G 0.09201 0.07178 0 0.1638 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.34it / s] all 26 94 0 0 0.00904 0.00192 Epoch gpu_mem box obj cls total targets img_size 21 / 299 3.35G 0.09202 0.07491 0 0.1669 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.43it / s] all 26 94 0 0 0.0149 0.00292 Epoch gpu_mem box obj cls total targets img_size 22 / 299 3.35G 0.08832 0.0688 0 0.1571 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0 0 0.0133 0.00198 Epoch gpu_mem box obj cls total targets img_size 23 / 299 3.35G 0.08623 0.06505 0 0.1513 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.42it / s] all 26 94 0.0381 0.138 0.0243 0.00378 Epoch gpu_mem box obj cls total targets img_size 24 / 299 3.35G 0.0873 0.06304 0 0.1503 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.45it / s] all 26 94 0.0154 0.223 0.00908 0.00152 Epoch gpu_mem box obj cls total targets img_size 25 / 299 3.35G 0.08717 0.06182 0 0.149 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.244 0.0213 0.141 0.0322 Epoch gpu_mem box obj cls total targets img_size 26 / 299 3.35G 0.08288 0.0584 0 0.1413 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.16 0.234 0.0933 0.0278 Epoch gpu_mem box obj cls total targets img_size 27 / 299 3.35G 0.08433 0.0609 0 0.1452 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.449 0.303 0.268 0.0728 Epoch gpu_mem box obj cls total targets img_size 28 / 299 3.35G 0.08201 0.06627 0 0.1483 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.125 0.617 0.298 0.0912 Epoch gpu_mem box obj cls total targets img_size 29 / 299 3.35G 0.08355 0.0583 0 0.1419 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.179 0.436 0.264 0.0673 Epoch gpu_mem box obj cls total targets img_size 30 / 299 3.35G 0.07975 0.06117 0 0.1409 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.102 0.638 0.313 0.116 Epoch gpu_mem box obj cls total targets img_size 31 / 299 3.35G 0.08023 0.05958 0 0.1398 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.0746 0.628 0.234 0.0526 Epoch gpu_mem box obj cls total targets img_size 32 / 299 3.35G 0.08677 0.06577 0 0.1525 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.0318 0.702 0.119 0.0229 Epoch gpu_mem box obj cls total targets img_size 33 / 299 3.35G 0.08005 0.05836 0 0.1384 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.123 0.681 0.384 0.116 Epoch gpu_mem box obj cls total targets img_size 34 / 299 3.35G 0.07848 0.06015 0 0.1386 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.14 0.638 0.423 0.138 Epoch gpu_mem box obj cls total targets img_size 35 / 299 3.35G 0.07703 0.05352 0 0.1305 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.205 0.585 0.421 0.163 Epoch gpu_mem box obj cls total targets img_size 36 / 299 3.35G 0.07484 0.06202 0 0.1369 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.183 0.649 0.408 0.133 Epoch gpu_mem box obj cls total targets img_size 37 / 299 3.35G 0.07609 0.05787 0 0.134 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.0553 0.638 0.111 0.0239 Epoch gpu_mem box obj cls total targets img_size 38 / 299 3.35G 0.07931 0.06182 0 0.1411 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.39it / s] all 26 94 0.24 0.596 0.501 0.216 Epoch gpu_mem box obj cls total targets img_size 39 / 299 3.35G 0.07109 0.05716 0 0.1282 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.161 0.649 0.39 0.144 Epoch gpu_mem box obj cls total targets img_size 40 / 299 3.35G 0.07709 0.05501 0 0.1321 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.126 0.628 0.232 0.0494 Epoch gpu_mem box obj cls total targets img_size 41 / 299 3.35G 0.08278 0.05453 0 0.1373 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.206 0.702 0.43 0.129 Epoch gpu_mem box obj cls total targets img_size 42 / 299 3.35G 0.07244 0.05436 0 0.1268 22 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.168 0.777 0.513 0.186 Epoch gpu_mem box obj cls total targets img_size 43 / 299 3.35G 0.06927 0.05524 0 0.1245 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.144 0.798 0.369 0.0851 Epoch gpu_mem box obj cls total targets img_size 44 / 299 3.35G 0.07007 0.05596 0 0.126 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.188 0.723 0.511 0.146 Epoch gpu_mem box obj cls total targets img_size 45 / 299 3.35G 0.07066 0.05397 0 0.1246 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.121 0.702 0.411 0.0834 Epoch gpu_mem box obj cls total targets img_size 46 / 299 3.35G 0.07036 0.06173 0 0.1321 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.0619 0.723 0.438 0.2 Epoch gpu_mem box obj cls total targets img_size 47 / 299 3.35G 0.07092 0.05919 0 0.1301 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.131 0.766 0.513 0.151 Epoch gpu_mem box obj cls total targets img_size 48 / 299 3.35G 0.06565 0.05698 0 0.1226 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.154 0.787 0.6 0.256 Epoch gpu_mem box obj cls total targets img_size 49 / 299 3.35G 0.06472 0.0567 0 0.1214 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.258 0.67 0.566 0.237 Epoch gpu_mem box obj cls total targets img_size 50 / 299 3.35G 0.07274 0.05122 0 0.124 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.0539 0.819 0.247 0.0739 Epoch gpu_mem box obj cls total targets img_size 51 / 299 3.35G 0.07168 0.05649 0 0.1282 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.131 0.787 0.588 0.203 Epoch gpu_mem box obj cls total targets img_size 52 / 299 3.35G 0.06673 0.05502 0 0.1218 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.197 0.83 0.588 0.239 Epoch gpu_mem box obj cls total targets img_size 53 / 299 3.35G 0.06411 0.05345 0 0.1176 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.251 0.766 0.628 0.264 Epoch gpu_mem box obj cls total targets img_size 54 / 299 3.35G 0.0635 0.053 0 0.1165 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.219 0.723 0.518 0.169 Epoch gpu_mem box obj cls total targets img_size 55 / 299 3.35G 0.07019 0.04792 0 0.1181 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.48it / s] all 26 94 0.215 0.798 0.464 0.178 Epoch gpu_mem box obj cls total targets img_size 56 / 299 3.35G 0.06427 0.05059 0 0.1149 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.287 0.713 0.558 0.268 Epoch gpu_mem box obj cls total targets img_size 57 / 299 3.35G 0.06088 0.04851 0 0.1094 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.229 0.83 0.62 0.256 Epoch gpu_mem box obj cls total targets img_size 58 / 299 3.35G 0.05738 0.04864 0 0.106 0 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.259 0.745 0.608 0.278 Epoch gpu_mem box obj cls total targets img_size 59 / 299 3.35G 0.0645 0.04999 0 0.1145 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.0638 0.883 0.517 0.131 Epoch gpu_mem box obj cls total targets img_size 60 / 299 3.35G 0.06459 0.04699 0 0.1116 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.128 0.926 0.685 0.287 Epoch gpu_mem box obj cls total targets img_size 61 / 299 3.35G 0.0606 0.04807 0 0.1087 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.235 0.904 0.729 0.359 Epoch gpu_mem box obj cls total targets img_size 62 / 299 3.35G 0.05678 0.04883 0 0.1056 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.412 0.777 0.664 0.345 Epoch gpu_mem box obj cls total targets img_size 63 / 299 3.35G 0.05517 0.04943 0 0.1046 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.228 0.862 0.704 0.336 Epoch gpu_mem box obj cls total targets img_size 64 / 299 3.35G 0.06212 0.05229 0 0.1144 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.338 0.67 0.512 0.269 Epoch gpu_mem box obj cls total targets img_size 65 / 299 3.35G 0.05435 0.05048 0 0.1048 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.306 0.819 0.648 0.214 Epoch gpu_mem box obj cls total targets img_size 66 / 299 3.35G 0.05923 0.04408 0 0.1033 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.249 0.713 0.4 0.0895 Epoch gpu_mem box obj cls total targets img_size 67 / 299 3.35G 0.0632 0.04365 0 0.1068 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.359 0.83 0.715 0.317 Epoch gpu_mem box obj cls total targets img_size 68 / 299 3.35G 0.0609 0.04834 0 0.1092 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.405 0.862 0.796 0.412 Epoch gpu_mem box obj cls total targets img_size 69 / 299 3.35G 0.05568 0.04736 0 0.103 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.248 0.947 0.795 0.392 Epoch gpu_mem box obj cls total targets img_size 70 / 299 3.35G 0.05453 0.04912 0 0.1036 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.246 0.883 0.676 0.244 Epoch gpu_mem box obj cls total targets img_size 71 / 299 3.35G 0.05256 0.04764 0 0.1002 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.27 0.915 0.626 0.283 Epoch gpu_mem box obj cls total targets img_size 72 / 299 3.35G 0.05535 0.04237 0 0.09772 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.353 0.84 0.741 0.272 Epoch gpu_mem box obj cls total targets img_size 73 / 299 3.35G 0.06079 0.04501 0 0.1058 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.264 0.968 0.785 0.367 Epoch gpu_mem box obj cls total targets img_size 74 / 299 3.35G 0.05439 0.04513 0 0.09952 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.284 0.968 0.822 0.434 Epoch gpu_mem box obj cls total targets img_size 75 / 299 3.35G 0.04914 0.04339 0 0.09252 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.303 0.957 0.836 0.426 Epoch gpu_mem box obj cls total targets img_size 76 / 299 3.35G 0.04844 0.03956 0 0.088 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.326 0.904 0.749 0.364 Epoch gpu_mem box obj cls total targets img_size 77 / 299 3.35G 0.05159 0.04399 0 0.09558 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.06it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.43 0.83 0.718 0.353 Epoch gpu_mem box obj cls total targets img_size 78 / 299 3.35G 0.06255 0.04807 0 0.1106 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.307 0.915 0.764 0.366 Epoch gpu_mem box obj cls total targets img_size 79 / 299 3.35G 0.04969 0.04351 0 0.0932 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.51it / s] all 26 94 0.363 0.936 0.86 0.466 Epoch gpu_mem box obj cls total targets img_size 80 / 299 3.35G 0.04868 0.04323 0 0.09191 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.317 0.936 0.865 0.354 Epoch gpu_mem box obj cls total targets img_size 81 / 299 3.35G 0.05023 0.04699 0 0.09722 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.239 0.936 0.731 0.207 Epoch gpu_mem box obj cls total targets img_size 82 / 299 3.35G 0.05613 0.04288 0 0.09902 0 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.304 0.947 0.853 0.429 Epoch gpu_mem box obj cls total targets img_size 83 / 299 3.35G 0.04949 0.045 0 0.09449 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.406 0.968 0.789 0.403 Epoch gpu_mem box obj cls total targets img_size 84 / 299 3.35G 0.0469 0.04198 0 0.08888 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.397 0.957 0.855 0.474 Epoch gpu_mem box obj cls total targets img_size 85 / 299 3.35G 0.04354 0.03761 0 0.08115 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.51it / s] all 26 94 0.406 0.968 0.888 0.485 Epoch gpu_mem box obj cls total targets img_size 86 / 299 3.35G 0.04702 0.04182 0 0.08884 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.239 0.979 0.858 0.458 Epoch gpu_mem box obj cls total targets img_size 87 / 299 3.35G 0.05463 0.04767 0 0.1023 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.45it / s] all 26 94 0.272 0.915 0.793 0.408 Epoch gpu_mem box obj cls total targets img_size 88 / 299 3.35G 0.04825 0.04015 0 0.0884 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.407 0.947 0.846 0.473 Epoch gpu_mem box obj cls total targets img_size 89 / 299 3.35G 0.04382 0.04028 0 0.0841 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.443 0.947 0.871 0.498 Epoch gpu_mem box obj cls total targets img_size 90 / 299 3.35G 0.04216 0.0384 0 0.08057 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.484 0.957 0.866 0.427 Epoch gpu_mem box obj cls total targets img_size 91 / 299 3.35G 0.05066 0.04074 0 0.0914 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.303 1 0.889 0.431 Epoch gpu_mem box obj cls total targets img_size 92 / 299 3.35G 0.04851 0.04075 0 0.08926 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.384 0.989 0.883 0.508 Epoch gpu_mem box obj cls total targets img_size 93 / 299 3.35G 0.04532 0.04126 0 0.08659 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.27it / s] all 26 94 0.385 0.989 0.906 0.409 Epoch gpu_mem box obj cls total targets img_size 94 / 299 3.35G 0.04833 0.03796 0 0.08629 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.404 0.947 0.817 0.368 Epoch gpu_mem box obj cls total targets img_size 95 / 299 3.35G 0.05272 0.04194 0 0.09466 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.363 0.979 0.912 0.433 Epoch gpu_mem box obj cls total targets img_size 96 / 299 3.35G 0.05778 0.04122 0 0.099 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.399 0.989 0.866 0.4 Epoch gpu_mem box obj cls total targets img_size 97 / 299 3.35G 0.04767 0.03724 0 0.08492 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.334 1 0.911 0.509 Epoch gpu_mem box obj cls total targets img_size 98 / 299 3.35G 0.04121 0.03754 0 0.07875 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.437 0.947 0.878 0.518 Epoch gpu_mem box obj cls total targets img_size 99 / 299 3.35G 0.04148 0.0369 0 0.07838 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.306 0.989 0.874 0.527 Epoch gpu_mem box obj cls total targets img_size 100 / 299 3.35G 0.04417 0.04234 0 0.08651 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.363 0.968 0.799 0.273 Epoch gpu_mem box obj cls total targets img_size 101 / 299 3.35G 0.05 0.04064 0 0.09064 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.371 0.989 0.914 0.571 Epoch gpu_mem box obj cls total targets img_size 102 / 299 3.35G 0.04232 0.04113 0 0.08345 22 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.485 0.947 0.834 0.436 Epoch gpu_mem box obj cls total targets img_size 103 / 299 3.35G 0.04098 0.03667 0 0.07765 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.461 0.979 0.911 0.454 Epoch gpu_mem box obj cls total targets img_size 104 / 299 3.35G 0.04583 0.04097 0 0.0868 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.313 1 0.885 0.468 Epoch gpu_mem box obj cls total targets img_size 105 / 299 3.35G 0.05283 0.03778 0 0.09061 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.474 0.979 0.887 0.528 Epoch gpu_mem box obj cls total targets img_size 106 / 299 3.36G 0.0399 0.03992 0 0.07983 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.361 0.992 0.86 0.452 Epoch gpu_mem box obj cls total targets img_size 107 / 299 3.36G 0.03935 0.03955 0 0.0789 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.443 0.989 0.902 0.53 Epoch gpu_mem box obj cls total targets img_size 108 / 299 3.36G 0.04263 0.03807 0 0.08071 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.443 0.957 0.921 0.458 Epoch gpu_mem box obj cls total targets img_size 109 / 299 3.36G 0.04852 0.03585 0 0.08437 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.472 0.968 0.901 0.512 Epoch gpu_mem box obj cls total targets img_size 110 / 299 3.36G 0.04334 0.03697 0 0.0803 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.421 1 0.933 0.548 Epoch gpu_mem box obj cls total targets img_size 111 / 299 3.36G 0.03775 0.0367 0 0.07446 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.471 0.979 0.919 0.527 Epoch gpu_mem box obj cls total targets img_size 112 / 299 3.36G 0.03548 0.0391 0 0.07458 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.452 1 0.932 0.612 Epoch gpu_mem box obj cls total targets img_size 113 / 299 3.36G 0.0356 0.0376 0 0.0732 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.508 0.989 0.92 0.581 Epoch gpu_mem box obj cls total targets img_size 114 / 299 3.36G 0.04063 0.03903 0 0.07967 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.496 0.989 0.924 0.573 Epoch gpu_mem box obj cls total targets img_size 115 / 299 3.36G 0.03629 0.04111 0 0.0774 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.535 1 0.932 0.533 Epoch gpu_mem box obj cls total targets img_size 116 / 299 3.36G 0.03874 0.03803 0 0.07677 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.511 0.979 0.918 0.536 Epoch gpu_mem box obj cls total targets img_size 117 / 299 3.36G 0.03524 0.03732 0 0.07255 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.532 0.989 0.938 0.596 Epoch gpu_mem box obj cls total targets img_size 118 / 299 3.36G 0.03241 0.03567 0 0.06807 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.65it / s] all 26 94 0.518 1 0.943 0.626 Epoch gpu_mem box obj cls total targets img_size 119 / 299 3.36G 0.03817 0.03817 0 0.07634 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.528 0.936 0.865 0.332 Epoch gpu_mem box obj cls total targets img_size 120 / 299 3.36G 0.04099 0.03777 0 0.07876 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.576 0.989 0.936 0.578 Epoch gpu_mem box obj cls total targets img_size 121 / 299 3.36G 0.0355 0.03541 0 0.07092 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.543 0.957 0.873 0.495 Epoch gpu_mem box obj cls total targets img_size 122 / 299 3.36G 0.03845 0.03964 0 0.07809 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.514 0.989 0.934 0.554 Epoch gpu_mem box obj cls total targets img_size 123 / 299 3.36G 0.04238 0.03606 0 0.07844 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.6 1 0.942 0.591 Epoch gpu_mem box obj cls total targets img_size 124 / 299 3.36G 0.03871 0.03472 0 0.07343 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.575 0.989 0.931 0.56 Epoch gpu_mem box obj cls total targets img_size 125 / 299 3.36G 0.03544 0.0376 0 0.07304 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.485 1 0.951 0.623 Epoch gpu_mem box obj cls total targets img_size 126 / 299 3.36G 0.03146 0.03656 0 0.06802 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.576 0.989 0.954 0.654 Epoch gpu_mem box obj cls total targets img_size 127 / 299 3.36G 0.03414 0.03637 0 0.0705 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.584 1 0.948 0.574 Epoch gpu_mem box obj cls total targets img_size 128 / 299 3.36G 0.04266 0.03597 0 0.07863 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.583 0.968 0.942 0.548 Epoch gpu_mem box obj cls total targets img_size 129 / 299 3.36G 0.03705 0.03468 0 0.07173 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.628 0.957 0.934 0.594 Epoch gpu_mem box obj cls total targets img_size 130 / 299 3.36G 0.03332 0.03334 0 0.06666 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.535 0.957 0.908 0.503 Epoch gpu_mem box obj cls total targets img_size 131 / 299 3.36G 0.03118 0.03361 0 0.0648 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.558 0.979 0.933 0.635 Epoch gpu_mem box obj cls total targets img_size 132 / 299 3.36G 0.03779 0.03508 0 0.07287 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.582 0.979 0.935 0.576 Epoch gpu_mem box obj cls total targets img_size 133 / 299 3.36G 0.03588 0.03516 0 0.07104 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.607 0.968 0.934 0.595 Epoch gpu_mem box obj cls total targets img_size 134 / 299 3.36G 0.03505 0.03303 0 0.06808 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.609 0.979 0.938 0.626 Epoch gpu_mem box obj cls total targets img_size 135 / 299 3.36G 0.0309 0.03245 0 0.06334 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.538 0.979 0.923 0.593 Epoch gpu_mem box obj cls total targets img_size 136 / 299 3.36G 0.03262 0.03454 0 0.06716 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.569 0.968 0.94 0.619 Epoch gpu_mem box obj cls total targets img_size 137 / 299 3.36G 0.03742 0.03527 0 0.07269 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.534 0.989 0.95 0.585 Epoch gpu_mem box obj cls total targets img_size 138 / 299 3.36G 0.03595 0.03429 0 0.07024 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.575 0.979 0.941 0.588 Epoch gpu_mem box obj cls total targets img_size 139 / 299 3.36G 0.03164 0.03547 0 0.06712 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.582 0.989 0.943 0.633 Epoch gpu_mem box obj cls total targets img_size 140 / 299 3.36G 0.02996 0.03597 0 0.06593 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.536 1 0.95 0.619 Epoch gpu_mem box obj cls total targets img_size 141 / 299 3.36G 0.03216 0.0348 0 0.06696 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.575 1 0.956 0.556 Epoch gpu_mem box obj cls total targets img_size 142 / 299 3.36G 0.03688 0.03691 0 0.07379 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.582 0.989 0.952 0.611 Epoch gpu_mem box obj cls total targets img_size 143 / 299 3.36G 0.03225 0.03556 0 0.06781 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.56 0.968 0.947 0.626 Epoch gpu_mem box obj cls total targets img_size 144 / 299 3.36G 0.03179 0.03457 0 0.06636 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.562 0.984 0.925 0.559 Epoch gpu_mem box obj cls total targets img_size 145 / 299 3.36G 0.03089 0.03433 0 0.06523 24 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.559 0.972 0.947 0.614 Epoch gpu_mem box obj cls total targets img_size 146 / 299 3.36G 0.03476 0.03403 0 0.06879 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.528 0.979 0.951 0.628 Epoch gpu_mem box obj cls total targets img_size 147 / 299 3.36G 0.0339 0.03291 0 0.06682 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.573 0.979 0.945 0.593 Epoch gpu_mem box obj cls total targets img_size 148 / 299 3.36G 0.03237 0.03453 0 0.0669 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.566 0.989 0.949 0.65 Epoch gpu_mem box obj cls total targets img_size 149 / 299 3.36G 0.03019 0.035 0 0.06519 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.607 0.947 0.938 0.629 Epoch gpu_mem box obj cls total targets img_size 150 / 299 3.36G 0.03075 0.03565 0 0.0664 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.69it / s] all 26 94 0.563 1 0.942 0.627 Epoch gpu_mem box obj cls total targets img_size 151 / 299 3.36G 0.03288 0.03377 0 0.06665 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.541 1 0.937 0.586 Epoch gpu_mem box obj cls total targets img_size 152 / 299 3.36G 0.03197 0.0313 0 0.06327 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.548 1 0.933 0.619 Epoch gpu_mem box obj cls total targets img_size 153 / 299 3.36G 0.02811 0.03329 0 0.06141 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.598 0.989 0.933 0.63 Epoch gpu_mem box obj cls total targets img_size 154 / 299 3.36G 0.02861 0.03161 0 0.06022 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.557 0.979 0.922 0.612 Epoch gpu_mem box obj cls total targets img_size 155 / 299 3.36G 0.0332 0.03304 0 0.06624 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.602 0.979 0.918 0.565 Epoch gpu_mem box obj cls total targets img_size 156 / 299 3.36G 0.03297 0.03435 0 0.06732 18 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.57 0.979 0.932 0.615 Epoch gpu_mem box obj cls total targets img_size 157 / 299 3.36G 0.03073 0.03326 0 0.06399 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.579 1 0.956 0.652 Epoch gpu_mem box obj cls total targets img_size 158 / 299 3.36G 0.02919 0.03381 0 0.06299 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.581 1 0.952 0.646 Epoch gpu_mem box obj cls total targets img_size 159 / 299 3.36G 0.03076 0.03467 0 0.06543 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.583 0.989 0.933 0.625 Epoch gpu_mem box obj cls total targets img_size 160 / 299 3.36G 0.03289 0.03505 0 0.06794 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.565 1 0.952 0.615 Epoch gpu_mem box obj cls total targets img_size 161 / 299 3.36G 0.02979 0.03197 0 0.06176 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.595 1 0.946 0.647 Epoch gpu_mem box obj cls total targets img_size 162 / 299 3.36G 0.02641 0.03312 0 0.05953 25 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.603 0.989 0.94 0.621 Epoch gpu_mem box obj cls total targets img_size 163 / 299 3.36G 0.02893 0.0341 0 0.06302 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.576 0.989 0.952 0.639 Epoch gpu_mem box obj cls total targets img_size 164 / 299 3.36G 0.02995 0.03325 0 0.06321 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.607 0.989 0.947 0.657 Epoch gpu_mem box obj cls total targets img_size 165 / 299 3.36G 0.0298 0.03037 0 0.06017 23 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.577 0.979 0.935 0.623 Epoch gpu_mem box obj cls total targets img_size 166 / 299 3.36G 0.02898 0.03742 0 0.0664 21 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.573 0.989 0.931 0.628 Epoch gpu_mem box obj cls total targets img_size 167 / 299 3.36G 0.02916 0.03318 0 0.06235 25 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.595 0.979 0.943 0.662 Epoch gpu_mem box obj cls total targets img_size 168 / 299 3.36G 0.02815 0.0317 0 0.05985 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.617 0.979 0.942 0.642 Epoch gpu_mem box obj cls total targets img_size 169 / 299 3.36G 0.03055 0.03106 0 0.0616 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.625 0.976 0.947 0.671 Epoch gpu_mem box obj cls total targets img_size 170 / 299 3.36G 0.02725 0.03235 0 0.0596 0 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.6 0.989 0.942 0.62 Epoch gpu_mem box obj cls total targets img_size 171 / 299 3.36G 0.0286 0.03153 0 0.06013 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.607 0.979 0.949 0.59 Epoch gpu_mem box obj cls total targets img_size 172 / 299 3.36G 0.02941 0.03025 0 0.05966 21 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.65it / s] all 26 94 0.619 0.968 0.946 0.597 Epoch gpu_mem box obj cls total targets img_size 173 / 299 3.36G 0.03078 0.03129 0 0.06207 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.583 0.979 0.946 0.64 Epoch gpu_mem box obj cls total targets img_size 174 / 299 3.36G 0.02731 0.02933 0 0.05664 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.589 0.968 0.944 0.636 Epoch gpu_mem box obj cls total targets img_size 175 / 299 3.36G 0.0281 0.02876 0 0.05687 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.63 0.957 0.945 0.631 Epoch gpu_mem box obj cls total targets img_size 176 / 299 3.36G 0.0284 0.03216 0 0.06057 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.599 0.979 0.954 0.665 Epoch gpu_mem box obj cls total targets img_size 177 / 299 3.36G 0.02806 0.02971 0 0.05777 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.599 0.979 0.951 0.606 Epoch gpu_mem box obj cls total targets img_size 178 / 299 3.36G 0.03097 0.03117 0 0.06214 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.606 0.979 0.955 0.639 Epoch gpu_mem box obj cls total targets img_size 179 / 299 3.36G 0.03171 0.03279 0 0.06451 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.595 1 0.954 0.623 Epoch gpu_mem box obj cls total targets img_size 180 / 299 3.36G 0.02811 0.0305 0 0.05862 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.596 0.989 0.949 0.669 Epoch gpu_mem box obj cls total targets img_size 181 / 299 3.36G 0.02759 0.03138 0 0.05897 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.52it / s] all 26 94 0.592 0.979 0.924 0.585 Epoch gpu_mem box obj cls total targets img_size 182 / 299 3.36G 0.03059 0.03073 0 0.06131 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.607 0.954 0.929 0.588 Epoch gpu_mem box obj cls total targets img_size 183 / 299 3.36G 0.02927 0.03203 0 0.06131 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.592 0.957 0.93 0.636 Epoch gpu_mem box obj cls total targets img_size 184 / 299 3.36G 0.02575 0.03047 0 0.05622 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.614 0.947 0.927 0.621 Epoch gpu_mem box obj cls total targets img_size 185 / 299 3.36G 0.02598 0.02993 0 0.05591 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.638 0.936 0.941 0.654 Epoch gpu_mem box obj cls total targets img_size 186 / 299 3.36G 0.02635 0.03063 0 0.05698 1 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.625 0.936 0.945 0.66 Epoch gpu_mem box obj cls total targets img_size 187 / 299 3.36G 0.02873 0.03132 0 0.06005 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.618 0.957 0.945 0.656 Epoch gpu_mem box obj cls total targets img_size 188 / 299 3.36G 0.02849 0.03257 0 0.06106 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.586 0.948 0.941 0.66 Epoch gpu_mem box obj cls total targets img_size 189 / 299 3.36G 0.02667 0.03107 0 0.05774 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.591 0.968 0.926 0.656 Epoch gpu_mem box obj cls total targets img_size 190 / 299 3.36G 0.02558 0.0305 0 0.05608 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.569 0.979 0.95 0.665 Epoch gpu_mem box obj cls total targets img_size 191 / 299 3.36G 0.02417 0.03075 0 0.05492 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.574 1 0.95 0.668 Epoch gpu_mem box obj cls total targets img_size 192 / 299 3.36G 0.02682 0.03353 0 0.06035 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.39it / s] all 26 94 0.569 0.989 0.95 0.678 Epoch gpu_mem box obj cls total targets img_size 193 / 299 3.36G 0.02639 0.03238 0 0.05877 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 09 < 00 : 00 , 1.03it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.38it / s] all 26 94 0.57 0.989 0.942 0.649 Epoch gpu_mem box obj cls total targets img_size 194 / 299 3.36G 0.02522 0.0302 0 0.05542 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.06it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.593 0.989 0.946 0.663 Epoch gpu_mem box obj cls total targets img_size 195 / 299 3.36G 0.02468 0.02924 0 0.05392 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 07 < 00 : 00 , 1.05it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.40it / s] all 26 94 0.593 0.989 0.946 0.651 Epoch gpu_mem box obj cls total targets img_size 196 / 299 3.36G 0.02479 0.03013 0 0.05491 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 08 < 00 : 00 , 1.04it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.585 1 0.946 0.67 Epoch gpu_mem box obj cls total targets img_size 197 / 299 3.36G 0.02558 0.03022 0 0.05581 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.569 0.979 0.95 0.661 Epoch gpu_mem box obj cls total targets img_size 198 / 299 3.36G 0.02543 0.03206 0 0.05749 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.65it / s] all 26 94 0.571 0.968 0.923 0.639 Epoch gpu_mem box obj cls total targets img_size 199 / 299 3.36G 0.02461 0.02886 0 0.05346 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.577 0.942 0.937 0.654 Epoch gpu_mem box obj cls total targets img_size 200 / 299 3.36G 0.02544 0.03037 0 0.05581 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.587 0.957 0.936 0.63 Epoch gpu_mem box obj cls total targets img_size 201 / 299 3.36G 0.02554 0.03041 0 0.05595 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.591 0.953 0.924 0.61 Epoch gpu_mem box obj cls total targets img_size 202 / 299 3.36G 0.02584 0.02997 0 0.05581 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.586 0.979 0.929 0.621 Epoch gpu_mem box obj cls total targets img_size 203 / 299 3.36G 0.02511 0.03041 0 0.05552 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.69it / s] all 26 94 0.62 0.947 0.941 0.665 Epoch gpu_mem box obj cls total targets img_size 204 / 299 3.36G 0.02604 0.03066 0 0.05669 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.603 0.957 0.947 0.656 Epoch gpu_mem box obj cls total targets img_size 205 / 299 3.36G 0.02646 0.02915 0 0.05561 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.70it / s] all 26 94 0.619 0.979 0.944 0.65 Epoch gpu_mem box obj cls total targets img_size 206 / 299 3.36G 0.02681 0.02949 0 0.0563 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.603 0.979 0.948 0.66 Epoch gpu_mem box obj cls total targets img_size 207 / 299 3.36G 0.02503 0.02931 0 0.05434 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.601 0.979 0.948 0.668 Epoch gpu_mem box obj cls total targets img_size 208 / 299 3.36G 0.02407 0.02872 0 0.05279 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.631 0.957 0.949 0.634 Epoch gpu_mem box obj cls total targets img_size 209 / 299 3.36G 0.02547 0.02946 0 0.05493 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.637 0.968 0.953 0.673 Epoch gpu_mem box obj cls total targets img_size 210 / 299 3.36G 0.02846 0.03136 0 0.05982 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.599 0.969 0.951 0.672 Epoch gpu_mem box obj cls total targets img_size 211 / 299 3.36G 0.02567 0.02955 0 0.05522 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.65it / s] all 26 94 0.572 0.957 0.946 0.667 Epoch gpu_mem box obj cls total targets img_size 212 / 299 3.36G 0.02467 0.03135 0 0.05602 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.565 0.947 0.94 0.645 Epoch gpu_mem box obj cls total targets img_size 213 / 299 3.36G 0.02488 0.03086 0 0.05574 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.598 0.926 0.93 0.652 Epoch gpu_mem box obj cls total targets img_size 214 / 299 3.36G 0.02492 0.03109 0 0.05601 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.594 0.947 0.939 0.68 Epoch gpu_mem box obj cls total targets img_size 215 / 299 3.36G 0.02626 0.02811 0 0.05437 15 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.591 0.968 0.934 0.678 Epoch gpu_mem box obj cls total targets img_size 216 / 299 3.36G 0.0247 0.03074 0 0.05544 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.598 0.957 0.936 0.671 Epoch gpu_mem box obj cls total targets img_size 217 / 299 3.36G 0.02345 0.0306 0 0.05405 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.625 0.957 0.936 0.658 Epoch gpu_mem box obj cls total targets img_size 218 / 299 3.36G 0.02422 0.02837 0 0.05259 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.614 0.947 0.935 0.656 Epoch gpu_mem box obj cls total targets img_size 219 / 299 3.36G 0.02602 0.02816 0 0.05418 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.604 0.947 0.938 0.654 Epoch gpu_mem box obj cls total targets img_size 220 / 299 3.36G 0.02451 0.02821 0 0.05272 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.619 0.968 0.942 0.662 Epoch gpu_mem box obj cls total targets img_size 221 / 299 3.36G 0.02363 0.02743 0 0.05107 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.76it / s] all 26 94 0.604 0.979 0.947 0.668 Epoch gpu_mem box obj cls total targets img_size 222 / 299 3.36G 0.02413 0.02861 0 0.05274 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.588 0.989 0.949 0.67 Epoch gpu_mem box obj cls total targets img_size 223 / 299 3.36G 0.0243 0.03008 0 0.05438 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.579 0.989 0.948 0.688 Epoch gpu_mem box obj cls total targets img_size 224 / 299 3.36G 0.02442 0.03076 0 0.05518 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.563 0.989 0.949 0.692 Epoch gpu_mem box obj cls total targets img_size 225 / 299 3.36G 0.02434 0.03059 0 0.05493 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.66it / s] all 26 94 0.595 0.968 0.949 0.685 Epoch gpu_mem box obj cls total targets img_size 226 / 299 3.36G 0.02431 0.02838 0 0.05269 25 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.596 0.989 0.952 0.681 Epoch gpu_mem box obj cls total targets img_size 227 / 299 3.36G 0.02444 0.02815 0 0.05259 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.6 0.974 0.946 0.684 Epoch gpu_mem box obj cls total targets img_size 228 / 299 3.36G 0.02382 0.02985 0 0.05367 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.609 0.968 0.936 0.662 Epoch gpu_mem box obj cls total targets img_size 229 / 299 3.36G 0.02332 0.03118 0 0.0545 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.586 0.979 0.945 0.674 Epoch gpu_mem box obj cls total targets img_size 230 / 299 3.36G 0.02346 0.02796 0 0.05142 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.599 0.957 0.935 0.629 Epoch gpu_mem box obj cls total targets img_size 231 / 299 3.36G 0.02437 0.02901 0 0.05339 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.61 0.947 0.929 0.66 Epoch gpu_mem box obj cls total targets img_size 232 / 299 3.36G 0.02448 0.02962 0 0.05409 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.68it / s] all 26 94 0.615 0.947 0.932 0.661 Epoch gpu_mem box obj cls total targets img_size 233 / 299 3.36G 0.02428 0.02827 0 0.05255 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.615 0.968 0.939 0.657 Epoch gpu_mem box obj cls total targets img_size 234 / 299 3.36G 0.0234 0.02662 0 0.05002 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.623 0.947 0.941 0.662 Epoch gpu_mem box obj cls total targets img_size 235 / 299 3.36G 0.02364 0.02803 0 0.05167 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.616 0.936 0.942 0.667 Epoch gpu_mem box obj cls total targets img_size 236 / 299 3.36G 0.0232 0.03065 0 0.05385 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.601 0.968 0.945 0.679 Epoch gpu_mem box obj cls total targets img_size 237 / 299 3.36G 0.02399 0.02921 0 0.0532 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.67it / s] all 26 94 0.593 0.957 0.941 0.677 Epoch gpu_mem box obj cls total targets img_size 238 / 299 3.36G 0.02359 0.02652 0 0.05011 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.586 0.957 0.942 0.666 Epoch gpu_mem box obj cls total targets img_size 239 / 299 3.36G 0.02266 0.02656 0 0.04922 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.70it / s] all 26 94 0.611 0.947 0.941 0.674 Epoch gpu_mem box obj cls total targets img_size 240 / 299 3.36G 0.02219 0.0288 0 0.05098 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.624 0.957 0.951 0.683 Epoch gpu_mem box obj cls total targets img_size 241 / 299 3.36G 0.02261 0.02871 0 0.05132 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.632 0.947 0.951 0.68 Epoch gpu_mem box obj cls total targets img_size 242 / 299 3.36G 0.02305 0.02892 0 0.05197 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.597 0.947 0.943 0.654 Epoch gpu_mem box obj cls total targets img_size 243 / 299 3.36G 0.02328 0.02693 0 0.05022 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.593 0.947 0.947 0.654 Epoch gpu_mem box obj cls total targets img_size 244 / 299 3.36G 0.02351 0.0294 0 0.05291 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.61 0.947 0.941 0.668 Epoch gpu_mem box obj cls total targets img_size 245 / 299 3.36G 0.0221 0.02834 0 0.05044 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.606 0.957 0.938 0.652 Epoch gpu_mem box obj cls total targets img_size 246 / 299 3.36G 0.02339 0.02896 0 0.05235 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.596 0.957 0.94 0.664 Epoch gpu_mem box obj cls total targets img_size 247 / 299 3.36G 0.02354 0.02737 0 0.0509 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.594 0.948 0.94 0.665 Epoch gpu_mem box obj cls total targets img_size 248 / 299 3.36G 0.02192 0.02637 0 0.0483 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.591 0.947 0.939 0.658 Epoch gpu_mem box obj cls total targets img_size 249 / 299 3.36G 0.02282 0.02639 0 0.04921 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.613 0.947 0.937 0.636 Epoch gpu_mem box obj cls total targets img_size 250 / 299 3.36G 0.02279 0.02972 0 0.05251 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.65it / s] all 26 94 0.596 0.947 0.936 0.64 Epoch gpu_mem box obj cls total targets img_size 251 / 299 3.36G 0.02256 0.02725 0 0.04981 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.568 0.968 0.937 0.658 Epoch gpu_mem box obj cls total targets img_size 252 / 299 3.36G 0.02268 0.02567 0 0.04834 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.564 0.957 0.938 0.675 Epoch gpu_mem box obj cls total targets img_size 253 / 299 3.36G 0.02254 0.02724 0 0.04978 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.582 0.947 0.92 0.667 Epoch gpu_mem box obj cls total targets img_size 254 / 299 3.36G 0.02194 0.0282 0 0.05014 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.602 0.947 0.935 0.655 Epoch gpu_mem box obj cls total targets img_size 255 / 299 3.36G 0.02214 0.02798 0 0.05012 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.623 0.947 0.935 0.648 Epoch gpu_mem box obj cls total targets img_size 256 / 299 3.36G 0.02382 0.029 0 0.05282 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.605 0.947 0.945 0.677 Epoch gpu_mem box obj cls total targets img_size 257 / 299 3.36G 0.02201 0.02925 0 0.05126 20 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.606 0.947 0.945 0.668 Epoch gpu_mem box obj cls total targets img_size 258 / 299 3.36G 0.02172 0.02806 0 0.04979 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.605 0.957 0.944 0.678 Epoch gpu_mem box obj cls total targets img_size 259 / 299 3.36G 0.02237 0.02887 0 0.05123 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 04 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.618 0.947 0.943 0.671 Epoch gpu_mem box obj cls total targets img_size 260 / 299 3.36G 0.02226 0.0287 0 0.05096 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.50it / s] all 26 94 0.61 0.948 0.938 0.666 Epoch gpu_mem box obj cls total targets img_size 261 / 299 3.36G 0.02192 0.02715 0 0.04907 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.616 0.957 0.938 0.664 Epoch gpu_mem box obj cls total targets img_size 262 / 299 3.36G 0.02226 0.02807 0 0.05033 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.609 0.947 0.945 0.672 Epoch gpu_mem box obj cls total targets img_size 263 / 299 3.36G 0.02259 0.02715 0 0.04975 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.608 0.947 0.947 0.669 Epoch gpu_mem box obj cls total targets img_size 264 / 299 3.36G 0.02224 0.02699 0 0.04923 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.617 0.944 0.947 0.668 Epoch gpu_mem box obj cls total targets img_size 265 / 299 3.36G 0.02231 0.0259 0 0.04821 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.611 0.926 0.943 0.655 Epoch gpu_mem box obj cls total targets img_size 266 / 299 3.36G 0.02239 0.03103 0 0.05342 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.618 0.936 0.941 0.653 Epoch gpu_mem box obj cls total targets img_size 267 / 299 3.36G 0.02228 0.02636 0 0.04865 1 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.609 0.936 0.942 0.659 Epoch gpu_mem box obj cls total targets img_size 268 / 299 3.36G 0.022 0.02819 0 0.05019 19 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.616 0.957 0.944 0.662 Epoch gpu_mem box obj cls total targets img_size 269 / 299 3.36G 0.02291 0.02565 0 0.04856 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.599 0.968 0.945 0.674 Epoch gpu_mem box obj cls total targets img_size 270 / 299 3.36G 0.02291 0.02596 0 0.04887 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.63it / s] all 26 94 0.597 0.936 0.94 0.649 Epoch gpu_mem box obj cls total targets img_size 271 / 299 3.36G 0.02231 0.02689 0 0.0492 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.623 0.948 0.945 0.67 Epoch gpu_mem box obj cls total targets img_size 272 / 299 3.36G 0.02161 0.0264 0 0.04801 18 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.623 0.926 0.947 0.669 Epoch gpu_mem box obj cls total targets img_size 273 / 299 3.36G 0.02196 0.02852 0 0.05048 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.62it / s] all 26 94 0.634 0.926 0.95 0.667 Epoch gpu_mem box obj cls total targets img_size 274 / 299 3.36G 0.0223 0.02773 0 0.05004 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.629 0.936 0.95 0.668 Epoch gpu_mem box obj cls total targets img_size 275 / 299 3.36G 0.02253 0.02708 0 0.04961 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.642 0.936 0.945 0.669 Epoch gpu_mem box obj cls total targets img_size 276 / 299 3.36G 0.02128 0.02619 0 0.04747 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.64it / s] all 26 94 0.635 0.947 0.945 0.661 Epoch gpu_mem box obj cls total targets img_size 277 / 299 3.36G 0.02137 0.02687 0 0.04824 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.633 0.947 0.945 0.666 Epoch gpu_mem box obj cls total targets img_size 278 / 299 3.36G 0.0214 0.02703 0 0.04844 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.643 0.947 0.946 0.66 Epoch gpu_mem box obj cls total targets img_size 279 / 299 3.36G 0.02229 0.02711 0 0.0494 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.57it / s] all 26 94 0.665 0.947 0.941 0.662 Epoch gpu_mem box obj cls total targets img_size 280 / 299 3.36G 0.0216 0.02747 0 0.04907 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.53it / s] all 26 94 0.663 0.936 0.942 0.657 Epoch gpu_mem box obj cls total targets img_size 281 / 299 3.36G 0.02102 0.02766 0 0.04868 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.664 0.925 0.94 0.664 Epoch gpu_mem box obj cls total targets img_size 282 / 299 3.36G 0.02253 0.02952 0 0.05205 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.623 0.957 0.944 0.667 Epoch gpu_mem box obj cls total targets img_size 283 / 299 3.36G 0.02202 0.02567 0 0.04768 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.49it / s] all 26 94 0.612 0.957 0.949 0.666 Epoch gpu_mem box obj cls total targets img_size 284 / 299 3.36G 0.02097 0.02663 0 0.0476 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.605 0.979 0.949 0.675 Epoch gpu_mem box obj cls total targets img_size 285 / 299 3.36G 0.02053 0.02737 0 0.0479 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.622 0.947 0.943 0.649 Epoch gpu_mem box obj cls total targets img_size 286 / 299 3.36G 0.02156 0.02671 0 0.04827 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.60it / s] all 26 94 0.621 0.947 0.942 0.665 Epoch gpu_mem box obj cls total targets img_size 287 / 299 3.36G 0.02251 0.02857 0 0.05108 0 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.597 0.957 0.95 0.666 Epoch gpu_mem box obj cls total targets img_size 288 / 299 3.36G 0.023 0.02667 0 0.04966 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.596 0.979 0.954 0.675 Epoch gpu_mem box obj cls total targets img_size 289 / 299 3.36G 0.02113 0.02455 0 0.04569 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.593 0.968 0.953 0.676 Epoch gpu_mem box obj cls total targets img_size 290 / 299 3.36G 0.02186 0.03015 0 0.05201 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.616 0.947 0.948 0.663 Epoch gpu_mem box obj cls total targets img_size 291 / 299 3.36G 0.02116 0.02834 0 0.0495 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.59it / s] all 26 94 0.63 0.936 0.942 0.642 Epoch gpu_mem box obj cls total targets img_size 292 / 299 3.36G 0.02248 0.02819 0 0.05067 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.636 0.947 0.948 0.665 Epoch gpu_mem box obj cls total targets img_size 293 / 299 3.36G 0.02189 0.02668 0 0.04857 27 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.61it / s] all 26 94 0.648 0.936 0.945 0.652 Epoch gpu_mem box obj cls total targets img_size 294 / 299 3.36G 0.021 0.02697 0 0.04797 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.56it / s] all 26 94 0.648 0.936 0.947 0.668 Epoch gpu_mem box obj cls total targets img_size 295 / 299 3.36G 0.02204 0.02875 0 0.05079 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.642 0.947 0.949 0.684 Epoch gpu_mem box obj cls total targets img_size 296 / 299 3.36G 0.02088 0.03149 0 0.05237 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.54it / s] all 26 94 0.639 0.957 0.951 0.681 Epoch gpu_mem box obj cls total targets img_size 297 / 299 3.36G 0.02143 0.02705 0 0.04848 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.58it / s] all 26 94 0.651 0.936 0.946 0.678 Epoch gpu_mem box obj cls total targets img_size 298 / 299 3.36G 0.02068 0.02814 0 0.04882 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 05 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.55it / s] all 26 94 0.654 0.926 0.943 0.666 Epoch gpu_mem box obj cls total targets img_size 299 / 299 3.36G 0.0204 0.02701 0 0.04742 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 71 / 71 [ 01 : 06 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 13 / 13 [ 00 : 03 < 00 : 00 , 3.25it / s] all 26 94 0.653 0.915 0.937 0.669 Optimizer stripped from runs\train\exp4\weights\last.pt, 175.1MB Optimizer stripped from runs\train\exp4\weights\best.pt, 175.1MB 300 epochs completed in 5.852 hours. (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole> (wind_2021) H:\PytorchProject\yolov5_train_hole> |
5、训练完毕,查看模型相关参数
#################################
QQ 3087438119
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步