yolov5训练日志
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 | (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501>python train_20230320.py - - img - size 640 - - batch - size 2 - - epochs 300 - - data . / data / myvoc.yaml - - cfg . / models / yolov5m.yaml - - workers 0 Using torch 1.8 . 1 + cu111 CUDA: 0 (NVIDIA GeForce RTX 3080 Laptop GPU, 16383.5MB ) Namespace(adam = False , batch_size = 2 , bucket = ' ', cache_images=False, cfg=' . / models / yolov5m.yaml ', data=' . / data / myvoc.yaml ', device=' ', epochs=300, evolve=False, exist_ok=False, global_rank=-1, hyp=' data / hyp.scratch.yaml ', image_weights=False, img_size=[640, 640], local_rank=-1, log_artifacts=False, log_imgs=16, multi_scale=False, name=' exp ', noautoanchor=False, nosave=False, notest=False, project=' runs / train ', quad=False, rect=False, resume=False, save_dir=' runs\\train\\exp ', single_cls=False, sync_bn=False, total_batch_size=2, weights=' . / models / 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 = 2 from n params module arguments 0 - 1 1 5280 models.common.Focus [ 3 , 48 , 3 ] 1 - 1 1 41664 models.common.Conv [ 48 , 96 , 3 , 2 ] 2 - 1 1 65280 models.common.C3 [ 96 , 96 , 2 ] 3 - 1 1 166272 models.common.Conv [ 96 , 192 , 3 , 2 ] 4 - 1 1 629760 models.common.C3 [ 192 , 192 , 6 ] 5 - 1 1 664320 models.common.Conv [ 192 , 384 , 3 , 2 ] 6 - 1 1 2512896 models.common.C3 [ 384 , 384 , 6 ] 7 - 1 1 2655744 models.common.Conv [ 384 , 768 , 3 , 2 ] 8 - 1 1 1476864 models.common.SPP [ 768 , 768 , [ 5 , 9 , 13 ]] 9 - 1 1 4134912 models.common.C3 [ 768 , 768 , 2 , False ] 10 - 1 1 295680 models.common.Conv [ 768 , 384 , 1 , 1 ] 11 - 1 1 0 torch.nn.modules.upsampling.Upsample [ None , 2 , 'nearest' ] 12 [ - 1 , 6 ] 1 0 models.common.Concat [ 1 ] 13 - 1 1 1182720 models.common.C3 [ 768 , 384 , 2 , False ] 14 - 1 1 74112 models.common.Conv [ 384 , 192 , 1 , 1 ] 15 - 1 1 0 torch.nn.modules.upsampling.Upsample [ None , 2 , 'nearest' ] 16 [ - 1 , 4 ] 1 0 models.common.Concat [ 1 ] 17 - 1 1 296448 models.common.C3 [ 384 , 192 , 2 , False ] 18 - 1 1 332160 models.common.Conv [ 192 , 192 , 3 , 2 ] 19 [ - 1 , 14 ] 1 0 models.common.Concat [ 1 ] 20 - 1 1 1035264 models.common.C3 [ 384 , 384 , 2 , False ] 21 - 1 1 1327872 models.common.Conv [ 384 , 384 , 3 , 2 ] 22 [ - 1 , 10 ] 1 0 models.common.Concat [ 1 ] 23 - 1 1 4134912 models.common.C3 [ 768 , 768 , 2 , False ] 24 [ 17 , 20 , 23 ] 1 28287 models.yolo.Detect [ 2 , [[ 10 , 13 , 16 , 30 , 33 , 23 ], [ 30 , 61 , 62 , 45 , 59 , 119 ], [ 116 , 90 , 156 , 198 , 373 , 326 ]], [ 192 , 384 , 768 ]] Model Summary: 391 layers, 21060447 parameters, 21060447 gradients, 50.4 GFLOPS Transferred 59 / 506 items from . / models / yolov5s.pt Scaled weight_decay = 0.0005 Optimizer groups: 86 .bias, 86 conv.weight, 83 other Scanning 'VOC_2024061501\labels' for images and labels... 43 found, 0 missing, 0 empty, 0 corrupted: 4 % |████▏ | 43 / 979 [ 00 : 00 < 00 : 02 , 426.75it / s]WARNING: Ignoring corrupted image and / or label VOC_2024061501\\JPEGImages\\IMG_4201.jpg: [Errno 2 ] No such file or directory: 'VOC_2024061501\\\\JPEGImages\\\\IMG_4201.jpg' Scanning 'VOC_2024061501\labels' for images and labels... 117 found, 0 missing, 0 empty, 1 corrupted: 12 % |███████████▎ | 118 / 979 [ 00 : 00 < 00 : 01 , 613.78it / s]WARNING: Ignoring corrupted image and / or label VOC_2024061501\\JPEGImages\\IMG_4281.jpg: [Errno 2 ] No such file or directory: 'VOC_2024061501\\\\JPEGImages\\\\IMG_4281.jpg' Scanning 'VOC_2024061501\labels' for images and labels... 977 found, 0 missing, 1 empty, 2 corrupted: 100 % |██████████████████████████████████████████████████████████████████████████████████████████████| 979 / 979 [ 00 : 01 < 00 : 00 , 853.58it / s] New cache created: VOC_2024061501\labels.cache Scanning 'VOC_2024061501\labels.cache' for images and labels... 977 found, 0 missing, 1 empty, 2 corrupted: 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████| 979 / 979 [ 00 : 00 <?, ?it / s] Scanning images: 0 % | | 0 / 173 [ 00 : 00 <?, ?it / s]WARNING: Ignoring corrupted image and / or label VOC_2024061501\\JPEGImages\\IMG_3953.jpg: [Errno 2 ] No such file or directory: 'VOC_2024061501\\\\JPEGImages\\\\IMG_3953.jpg' Scanning 'VOC_2024061501\labels' for images and labels... 172 found, 0 missing, 0 empty, 1 corrupted: 100 % |██████████████████████████████████████████████████████████████████████████████████████████████| 173 / 173 [ 00 : 00 < 00 : 00 , 862.95it / s] New cache created: VOC_2024061501\labels.cache Scanning 'VOC_2024061501\labels.cache' for images and labels... 172 found, 0 missing, 0 empty, 1 corrupted: 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████| 173 / 173 [ 00 : 00 <?, ?it / s] Plotting labels... Analyzing anchors... anchors / target = 5.79 , Best Possible Recall (BPR) = 1.0000 Image sizes 640 train, 640 test Using 0 dataloader workers Logging results to runs\train\exp Starting training for 300 epochs... Epoch gpu_mem box obj cls total targets img_size 0 / 299 1.15G 0.1029 0.07175 0.02574 0.2004 14 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 33 < 00 : 00 , 2.53it / s] all 172 1.08e + 03 0.00133 0.00123 0.00013 2.44e - 05 Epoch gpu_mem box obj cls total targets img_size 1 / 299 1.2G 0.09772 0.07929 0.02289 0.1999 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 10 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0 0 0.000491 7.95e - 05 Epoch gpu_mem box obj cls total targets img_size 2 / 299 1.2G 0.09432 0.08041 0.02136 0.1961 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.84it / s] all 172 1.08e + 03 0.00673 0.138 0.00168 0.000294 Epoch gpu_mem box obj cls total targets img_size 3 / 299 1.2G 0.09078 0.07449 0.02021 0.1855 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 09 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.98it / s] all 172 1.08e + 03 0.00415 0.0173 0.015 0.00335 Epoch gpu_mem box obj cls total targets img_size 4 / 299 1.2G 0.08494 0.0746 0.02046 0.18 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.00it / s] all 172 1.08e + 03 0.123 0.293 0.0842 0.0195 Epoch gpu_mem box obj cls total targets img_size 5 / 299 1.2G 0.08275 0.07481 0.02014 0.1777 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.169 0.261 0.121 0.0332 Epoch gpu_mem box obj cls total targets img_size 6 / 299 1.2G 0.0799 0.07227 0.02002 0.1722 16 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.271 0.119 0.106 0.0323 Epoch gpu_mem box obj cls total targets img_size 7 / 299 1.2G 0.07719 0.07119 0.01923 0.1676 14 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.256 0.304 0.153 0.0467 Epoch gpu_mem box obj cls total targets img_size 8 / 299 1.2G 0.07647 0.07091 0.01967 0.1671 28 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 10 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.182 0.496 0.185 0.0554 Epoch gpu_mem box obj cls total targets img_size 9 / 299 1.2G 0.0742 0.07191 0.01852 0.1646 0 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.03it / s] all 172 1.08e + 03 0.224 0.406 0.191 0.0729 Epoch gpu_mem box obj cls total targets img_size 10 / 299 1.2G 0.0729 0.07128 0.01851 0.1627 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.81it / s] all 172 1.08e + 03 0.217 0.439 0.212 0.0699 Epoch gpu_mem box obj cls total targets img_size 11 / 299 1.2G 0.07088 0.06842 0.01909 0.1584 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.27 0.494 0.27 0.103 Epoch gpu_mem box obj cls total targets img_size 12 / 299 1.2G 0.07139 0.0692 0.01907 0.1597 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.319 0.361 0.225 0.078 Epoch gpu_mem box obj cls total targets img_size 13 / 299 1.2G 0.06908 0.07049 0.01863 0.1582 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.04it / s] all 172 1.08e + 03 0.195 0.517 0.257 0.0959 Epoch gpu_mem box obj cls total targets img_size 14 / 299 1.2G 0.06905 0.07074 0.01835 0.1581 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.24 0.54 0.322 0.112 Epoch gpu_mem box obj cls total targets img_size 15 / 299 1.2G 0.06848 0.07159 0.01783 0.1579 26 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.324 0.37 0.284 0.109 Epoch gpu_mem box obj cls total targets img_size 16 / 299 1.2G 0.06739 0.07 0.01831 0.1557 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.239 0.547 0.353 0.151 Epoch gpu_mem box obj cls total targets img_size 17 / 299 1.2G 0.06629 0.06921 0.01724 0.1527 20 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.242 0.53 0.341 0.141 Epoch gpu_mem box obj cls total targets img_size 18 / 299 1.2G 0.06629 0.06932 0.01752 0.1531 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.238 0.542 0.347 0.134 Epoch gpu_mem box obj cls total targets img_size 19 / 299 1.2G 0.06462 0.06727 0.01644 0.1483 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.96it / s] all 172 1.08e + 03 0.174 0.57 0.313 0.116 Epoch gpu_mem box obj cls total targets img_size 20 / 299 1.2G 0.0644 0.06771 0.0164 0.1485 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.92it / s] all 172 1.08e + 03 0.14 0.548 0.193 0.0734 Epoch gpu_mem box obj cls total targets img_size 21 / 299 1.2G 0.06522 0.06766 0.01531 0.1482 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.02it / s] all 172 1.08e + 03 0.306 0.556 0.43 0.185 Epoch gpu_mem box obj cls total targets img_size 22 / 299 1.2G 0.06234 0.0665 0.01554 0.1444 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.295 0.549 0.412 0.168 Epoch gpu_mem box obj cls total targets img_size 23 / 299 1.2G 0.06431 0.06772 0.01476 0.1468 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.196 0.585 0.426 0.18 Epoch gpu_mem box obj cls total targets img_size 24 / 299 1.2G 0.06424 0.06775 0.01415 0.1461 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.304 0.579 0.456 0.189 Epoch gpu_mem box obj cls total targets img_size 25 / 299 1.2G 0.06494 0.06778 0.01387 0.1466 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.37 0.509 0.394 0.153 Epoch gpu_mem box obj cls total targets img_size 26 / 299 1.2G 0.06301 0.06894 0.01359 0.1455 21 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.96it / s] all 172 1.08e + 03 0.394 0.579 0.486 0.204 Epoch gpu_mem box obj cls total targets img_size 27 / 299 1.2G 0.06182 0.06488 0.01391 0.1406 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.398 0.555 0.467 0.205 Epoch gpu_mem box obj cls total targets img_size 28 / 299 1.2G 0.06254 0.06702 0.01254 0.1421 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.04it / s] all 172 1.08e + 03 0.423 0.566 0.498 0.227 Epoch gpu_mem box obj cls total targets img_size 29 / 299 1.2G 0.06112 0.06702 0.01176 0.1399 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.395 0.583 0.505 0.239 Epoch gpu_mem box obj cls total targets img_size 30 / 299 1.2G 0.06084 0.06305 0.0115 0.1354 17 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.289 0.591 0.504 0.226 Epoch gpu_mem box obj cls total targets img_size 31 / 299 1.2G 0.0617 0.06616 0.01096 0.1388 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.466 0.55 0.48 0.225 Epoch gpu_mem box obj cls total targets img_size 32 / 299 1.2G 0.06153 0.0652 0.01089 0.1376 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.04it / s] all 172 1.08e + 03 0.203 0.56 0.376 0.157 Epoch gpu_mem box obj cls total targets img_size 33 / 299 1.2G 0.06121 0.06534 0.01137 0.1379 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 25 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.459 0.564 0.507 0.232 Epoch gpu_mem box obj cls total targets img_size 34 / 299 1.2G 0.06139 0.06261 0.009831 0.1338 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.398 0.553 0.454 0.206 Epoch gpu_mem box obj cls total targets img_size 35 / 299 1.2G 0.06005 0.0623 0.01183 0.1342 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.323 0.546 0.398 0.18 Epoch gpu_mem box obj cls total targets img_size 36 / 299 1.2G 0.06035 0.06371 0.01072 0.1348 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.426 0.577 0.504 0.217 Epoch gpu_mem box obj cls total targets img_size 37 / 299 1.2G 0.06085 0.06476 0.009593 0.1352 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.463 0.559 0.506 0.23 Epoch gpu_mem box obj cls total targets img_size 38 / 299 1.2G 0.05882 0.06302 0.01015 0.132 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.345 0.575 0.489 0.222 Epoch gpu_mem box obj cls total targets img_size 39 / 299 1.2G 0.05968 0.06419 0.01112 0.135 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.465 0.555 0.493 0.224 Epoch gpu_mem box obj cls total targets img_size 40 / 299 1.2G 0.05966 0.06381 0.008939 0.1324 19 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.442 0.568 0.497 0.216 Epoch gpu_mem box obj cls total targets img_size 41 / 299 1.2G 0.05878 0.06327 0.008806 0.1309 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.407 0.578 0.513 0.245 Epoch gpu_mem box obj cls total targets img_size 42 / 299 1.2G 0.05999 0.06606 0.008226 0.1343 19 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 26 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.416 0.599 0.543 0.264 Epoch gpu_mem box obj cls total targets img_size 43 / 299 1.2G 0.05751 0.0622 0.00826 0.128 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 24 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.482 0.554 0.513 0.241 Epoch gpu_mem box obj cls total targets img_size 44 / 299 1.2G 0.05921 0.06208 0.007552 0.1288 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 26 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.457 0.587 0.538 0.265 Epoch gpu_mem box obj cls total targets img_size 45 / 299 1.2G 0.05938 0.06346 0.008024 0.1309 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 24 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.515 0.593 0.546 0.269 Epoch gpu_mem box obj cls total targets img_size 46 / 299 1.2G 0.0578 0.06338 0.00793 0.1291 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.555 0.577 0.537 0.255 Epoch gpu_mem box obj cls total targets img_size 47 / 299 1.2G 0.05776 0.06462 0.006941 0.1293 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.494 0.591 0.55 0.274 Epoch gpu_mem box obj cls total targets img_size 48 / 299 1.2G 0.05752 0.06169 0.007607 0.1268 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.539 0.591 0.551 0.27 Epoch gpu_mem box obj cls total targets img_size 49 / 299 1.2G 0.05703 0.06028 0.007371 0.1247 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.406 0.6 0.557 0.271 Epoch gpu_mem box obj cls total targets img_size 50 / 299 1.2G 0.05649 0.06196 0.006293 0.1247 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.416 0.598 0.545 0.274 Epoch gpu_mem box obj cls total targets img_size 51 / 299 1.2G 0.05581 0.05979 0.005508 0.1211 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 24 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.517 0.588 0.552 0.275 Epoch gpu_mem box obj cls total targets img_size 52 / 299 1.2G 0.05755 0.06181 0.007111 0.1265 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.04it / s] all 172 1.08e + 03 0.493 0.592 0.549 0.271 Epoch gpu_mem box obj cls total targets img_size 53 / 299 1.2G 0.05788 0.06305 0.006045 0.127 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 35 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.557 0.567 0.53 0.261 Epoch gpu_mem box obj cls total targets img_size 54 / 299 1.2G 0.05714 0.06229 0.006012 0.1254 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.516 0.606 0.566 0.287 Epoch gpu_mem box obj cls total targets img_size 55 / 299 1.2G 0.05771 0.06254 0.006266 0.1265 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.503 0.599 0.56 0.272 Epoch gpu_mem box obj cls total targets img_size 56 / 299 1.2G 0.05613 0.06387 0.005261 0.1253 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.479 0.603 0.561 0.285 Epoch gpu_mem box obj cls total targets img_size 57 / 299 1.2G 0.05708 0.06314 0.008114 0.1283 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.511 0.596 0.552 0.275 Epoch gpu_mem box obj cls total targets img_size 58 / 299 1.2G 0.0566 0.06196 0.006385 0.1249 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.491 0.603 0.566 0.284 Epoch gpu_mem box obj cls total targets img_size 59 / 299 1.2G 0.05733 0.06334 0.005634 0.1263 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 10 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.512 0.595 0.562 0.28 Epoch gpu_mem box obj cls total targets img_size 60 / 299 1.2G 0.05588 0.06183 0.006017 0.1237 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 10 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.81it / s] all 172 1.08e + 03 0.53 0.599 0.558 0.289 Epoch gpu_mem box obj cls total targets img_size 61 / 299 1.2G 0.05653 0.06425 0.004806 0.1256 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 13 < 00 : 00 , 1.13it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.85it / s] all 172 1.08e + 03 0.525 0.6 0.568 0.296 Epoch gpu_mem box obj cls total targets img_size 62 / 299 1.2G 0.05563 0.06148 0.004635 0.1218 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 05 < 00 : 00 , 1.15it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.79it / s] all 172 1.08e + 03 0.505 0.599 0.557 0.282 Epoch gpu_mem box obj cls total targets img_size 63 / 299 1.2G 0.05579 0.06121 0.004866 0.1219 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 15 < 00 : 00 , 1.12it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.80it / s] all 172 1.08e + 03 0.503 0.608 0.567 0.3 Epoch gpu_mem box obj cls total targets img_size 64 / 299 1.2G 0.05636 0.06397 0.004325 0.1247 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 18 < 00 : 00 , 1.11it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.86it / s] all 172 1.08e + 03 0.532 0.606 0.574 0.295 Epoch gpu_mem box obj cls total targets img_size 65 / 299 1.2G 0.05421 0.06007 0.004235 0.1185 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 26 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.89it / s] all 172 1.08e + 03 0.549 0.595 0.563 0.291 Epoch gpu_mem box obj cls total targets img_size 66 / 299 1.2G 0.05479 0.0598 0.004425 0.119 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.547 0.584 0.552 0.284 Epoch gpu_mem box obj cls total targets img_size 67 / 299 1.2G 0.05548 0.06264 0.004546 0.1227 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 24 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.531 0.602 0.572 0.308 Epoch gpu_mem box obj cls total targets img_size 68 / 299 1.2G 0.05413 0.06022 0.004454 0.1188 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.453 0.607 0.564 0.3 Epoch gpu_mem box obj cls total targets img_size 69 / 299 1.2G 0.05523 0.06318 0.004348 0.1228 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.499 0.607 0.564 0.299 Epoch gpu_mem box obj cls total targets img_size 70 / 299 1.2G 0.05596 0.06272 0.003782 0.1225 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.475 0.583 0.552 0.282 Epoch gpu_mem box obj cls total targets img_size 71 / 299 1.2G 0.05379 0.05897 0.004945 0.1177 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.521 0.602 0.564 0.3 Epoch gpu_mem box obj cls total targets img_size 72 / 299 1.2G 0.05537 0.06098 0.004959 0.1213 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.499 0.604 0.552 0.284 Epoch gpu_mem box obj cls total targets img_size 73 / 299 1.2G 0.05501 0.06026 0.004387 0.1197 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.576 0.601 0.571 0.312 Epoch gpu_mem box obj cls total targets img_size 74 / 299 1.2G 0.05397 0.05855 0.004482 0.117 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.554 0.596 0.57 0.297 Epoch gpu_mem box obj cls total targets img_size 75 / 299 1.2G 0.05427 0.06071 0.003664 0.1186 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.546 0.604 0.575 0.306 Epoch gpu_mem box obj cls total targets img_size 76 / 299 1.2G 0.05378 0.06096 0.003745 0.1185 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 24 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.488 0.606 0.567 0.298 Epoch gpu_mem box obj cls total targets img_size 77 / 299 1.2G 0.05459 0.05948 0.0037 0.1178 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.61 0.603 0.576 0.312 Epoch gpu_mem box obj cls total targets img_size 78 / 299 1.2G 0.05469 0.06029 0.003882 0.1189 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.497 0.609 0.574 0.309 Epoch gpu_mem box obj cls total targets img_size 79 / 299 1.2G 0.05362 0.0606 0.003511 0.1177 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.546 0.604 0.574 0.305 Epoch gpu_mem box obj cls total targets img_size 80 / 299 1.2G 0.05308 0.06002 0.003915 0.117 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.656 0.593 0.576 0.31 Epoch gpu_mem box obj cls total targets img_size 81 / 299 1.2G 0.05386 0.05956 0.004021 0.1174 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.536 0.598 0.569 0.3 Epoch gpu_mem box obj cls total targets img_size 82 / 299 1.2G 0.05279 0.05861 0.004153 0.1156 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.541 0.609 0.576 0.309 Epoch gpu_mem box obj cls total targets img_size 83 / 299 1.2G 0.05363 0.06059 0.003999 0.1182 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.47 0.61 0.569 0.302 Epoch gpu_mem box obj cls total targets img_size 84 / 299 1.2G 0.05204 0.06033 0.003549 0.1159 23 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.537 0.609 0.577 0.305 Epoch gpu_mem box obj cls total targets img_size 85 / 299 1.2G 0.05432 0.05887 0.003066 0.1163 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 25 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.486 0.609 0.572 0.302 Epoch gpu_mem box obj cls total targets img_size 86 / 299 1.2G 0.05157 0.05883 0.003336 0.1137 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.501 0.609 0.58 0.31 Epoch gpu_mem box obj cls total targets img_size 87 / 299 1.2G 0.05361 0.05838 0.003524 0.1155 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.592 0.601 0.573 0.312 Epoch gpu_mem box obj cls total targets img_size 88 / 299 1.2G 0.05254 0.05831 0.002919 0.1138 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.525 0.598 0.57 0.307 Epoch gpu_mem box obj cls total targets img_size 89 / 299 1.2G 0.05238 0.0602 0.003135 0.1157 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.561 0.598 0.571 0.305 Epoch gpu_mem box obj cls total targets img_size 90 / 299 1.2G 0.05264 0.05825 0.002945 0.1138 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.538 0.591 0.564 0.303 Epoch gpu_mem box obj cls total targets img_size 91 / 299 1.2G 0.05251 0.05771 0.003074 0.1133 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.527 0.601 0.56 0.304 Epoch gpu_mem box obj cls total targets img_size 92 / 299 1.2G 0.05242 0.05977 0.002556 0.1147 28 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.558 0.6 0.576 0.313 Epoch gpu_mem box obj cls total targets img_size 93 / 299 1.2G 0.05278 0.05812 0.002545 0.1134 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 26 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.555 0.594 0.574 0.309 Epoch gpu_mem box obj cls total targets img_size 94 / 299 1.2G 0.05272 0.05965 0.003109 0.1155 23 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 25 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.58 0.595 0.571 0.312 Epoch gpu_mem box obj cls total targets img_size 95 / 299 1.2G 0.05179 0.05894 0.003466 0.1142 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 35 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.569 0.596 0.57 0.315 Epoch gpu_mem box obj cls total targets img_size 96 / 299 1.2G 0.05261 0.06014 0.002685 0.1154 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.531 0.604 0.578 0.316 Epoch gpu_mem box obj cls total targets img_size 97 / 299 1.2G 0.05212 0.05813 0.003127 0.1134 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 20 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.561 0.6 0.572 0.301 Epoch gpu_mem box obj cls total targets img_size 98 / 299 1.2G 0.05289 0.06045 0.002942 0.1163 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.565 0.593 0.574 0.313 Epoch gpu_mem box obj cls total targets img_size 99 / 299 1.2G 0.05282 0.05957 0.002844 0.1152 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 53 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.533 0.589 0.568 0.311 Epoch gpu_mem box obj cls total targets img_size 100 / 299 1.2G 0.05104 0.05869 0.003179 0.1129 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 19 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.456 0.604 0.564 0.314 Epoch gpu_mem box obj cls total targets img_size 101 / 299 1.2G 0.04975 0.05617 0.002987 0.1089 24 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.567 0.606 0.577 0.314 Epoch gpu_mem box obj cls total targets img_size 102 / 299 1.2G 0.05147 0.05732 0.002338 0.1111 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.559 0.602 0.575 0.313 Epoch gpu_mem box obj cls total targets img_size 103 / 299 1.2G 0.05257 0.06039 0.002438 0.1154 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.61 0.601 0.574 0.308 Epoch gpu_mem box obj cls total targets img_size 104 / 299 1.2G 0.05269 0.06061 0.003216 0.1165 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.607 0.593 0.571 0.307 Epoch gpu_mem box obj cls total targets img_size 105 / 299 1.2G 0.05214 0.05754 0.002951 0.1126 30 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 21 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.604 0.594 0.57 0.311 Epoch gpu_mem box obj cls total targets img_size 106 / 299 1.2G 0.05203 0.05867 0.002632 0.1133 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.573 0.596 0.568 0.312 Epoch gpu_mem box obj cls total targets img_size 107 / 299 1.2G 0.05179 0.05748 0.002731 0.112 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.579 0.602 0.577 0.319 Epoch gpu_mem box obj cls total targets img_size 108 / 299 1.2G 0.05232 0.05825 0.002668 0.1132 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.527 0.595 0.568 0.315 Epoch gpu_mem box obj cls total targets img_size 109 / 299 1.2G 0.05204 0.05752 0.002609 0.1122 31 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.457 0.604 0.572 0.315 Epoch gpu_mem box obj cls total targets img_size 110 / 299 1.2G 0.0515 0.05669 0.002751 0.1109 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.61 0.593 0.568 0.316 Epoch gpu_mem box obj cls total targets img_size 111 / 299 1.2G 0.05033 0.05949 0.002411 0.1122 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.555 0.602 0.573 0.317 Epoch gpu_mem box obj cls total targets img_size 112 / 299 1.2G 0.05052 0.05767 0.002205 0.1104 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.51 0.602 0.578 0.322 Epoch gpu_mem box obj cls total targets img_size 113 / 299 1.2G 0.05009 0.05592 0.00189 0.1079 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.548 0.607 0.579 0.323 Epoch gpu_mem box obj cls total targets img_size 114 / 299 1.2G 0.05032 0.05758 0.002482 0.1104 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.54 0.601 0.575 0.321 Epoch gpu_mem box obj cls total targets img_size 115 / 299 1.2G 0.04965 0.05871 0.002402 0.1108 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.589 0.594 0.571 0.318 Epoch gpu_mem box obj cls total targets img_size 116 / 299 1.2G 0.05064 0.05769 0.002458 0.1108 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.618 0.6 0.582 0.325 Epoch gpu_mem box obj cls total targets img_size 117 / 299 1.2G 0.05189 0.0591 0.002791 0.1138 22 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.572 0.584 0.568 0.315 Epoch gpu_mem box obj cls total targets img_size 118 / 299 1.2G 0.04936 0.0561 0.002602 0.1081 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 08 < 00 : 00 , 1.33it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.612 0.598 0.578 0.316 Epoch gpu_mem box obj cls total targets img_size 119 / 299 1.2G 0.05075 0.05936 0.002774 0.1129 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.594 0.6 0.577 0.315 Epoch gpu_mem box obj cls total targets img_size 120 / 299 1.2G 0.04937 0.05669 0.002555 0.1086 0 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 10 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.646 0.594 0.576 0.324 Epoch gpu_mem box obj cls total targets img_size 121 / 299 1.2G 0.04978 0.05446 0.00239 0.1066 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 08 < 00 : 00 , 1.33it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.638 0.584 0.565 0.315 Epoch gpu_mem box obj cls total targets img_size 122 / 299 1.2G 0.05135 0.05649 0.002489 0.1103 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 17 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.508 0.596 0.565 0.313 Epoch gpu_mem box obj cls total targets img_size 123 / 299 1.2G 0.05039 0.0559 0.002605 0.1089 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.574 0.603 0.578 0.322 Epoch gpu_mem box obj cls total targets img_size 124 / 299 1.2G 0.04855 0.05543 0.002337 0.1063 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.586 0.591 0.571 0.319 Epoch gpu_mem box obj cls total targets img_size 125 / 299 1.2G 0.04924 0.05592 0.002113 0.1073 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.23it / s] all 172 1.08e + 03 0.596 0.599 0.577 0.322 Epoch gpu_mem box obj cls total targets img_size 126 / 299 1.2G 0.0498 0.0559 0.002079 0.1078 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.634 0.602 0.59 0.332 Epoch gpu_mem box obj cls total targets img_size 127 / 299 1.2G 0.05009 0.05717 0.001783 0.109 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.606 0.593 0.578 0.322 Epoch gpu_mem box obj cls total targets img_size 128 / 299 1.2G 0.04871 0.05612 0.001908 0.1067 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.539 0.602 0.58 0.325 Epoch gpu_mem box obj cls total targets img_size 129 / 299 1.2G 0.04884 0.0553 0.00191 0.1061 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.567 0.605 0.58 0.32 Epoch gpu_mem box obj cls total targets img_size 130 / 299 1.2G 0.0505 0.05858 0.002682 0.1118 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.596 0.599 0.575 0.318 Epoch gpu_mem box obj cls total targets img_size 131 / 299 1.2G 0.0501 0.05871 0.002126 0.1109 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.533 0.607 0.58 0.322 Epoch gpu_mem box obj cls total targets img_size 132 / 299 1.2G 0.04958 0.0578 0.002369 0.1097 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.6 0.586 0.567 0.318 Epoch gpu_mem box obj cls total targets img_size 133 / 299 1.2G 0.04851 0.05702 0.00187 0.1074 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.22it / s] all 172 1.08e + 03 0.568 0.594 0.565 0.316 Epoch gpu_mem box obj cls total targets img_size 134 / 299 1.2G 0.04901 0.05538 0.001668 0.1061 22 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.583 0.578 0.562 0.317 Epoch gpu_mem box obj cls total targets img_size 135 / 299 1.2G 0.04851 0.0569 0.001744 0.1071 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 09 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.58 0.59 0.573 0.324 Epoch gpu_mem box obj cls total targets img_size 136 / 299 1.2G 0.04853 0.05637 0.001901 0.1068 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 13 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.539 0.604 0.572 0.321 Epoch gpu_mem box obj cls total targets img_size 137 / 299 1.2G 0.04766 0.05482 0.001995 0.1045 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 09 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.51 0.588 0.561 0.319 Epoch gpu_mem box obj cls total targets img_size 138 / 299 1.2G 0.04855 0.05625 0.001816 0.1066 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.539 0.601 0.57 0.322 Epoch gpu_mem box obj cls total targets img_size 139 / 299 1.2G 0.04873 0.05671 0.001643 0.1071 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.548 0.599 0.573 0.322 Epoch gpu_mem box obj cls total targets img_size 140 / 299 1.2G 0.04921 0.05695 0.001884 0.108 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.555 0.6 0.578 0.327 Epoch gpu_mem box obj cls total targets img_size 141 / 299 1.2G 0.04834 0.05535 0.001585 0.1053 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.585 0.591 0.566 0.32 Epoch gpu_mem box obj cls total targets img_size 142 / 299 1.2G 0.04827 0.05706 0.00234 0.1077 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 15 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.576 0.602 0.576 0.319 Epoch gpu_mem box obj cls total targets img_size 143 / 299 1.2G 0.0473 0.05558 0.001806 0.1047 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.574 0.578 0.562 0.316 Epoch gpu_mem box obj cls total targets img_size 144 / 299 1.2G 0.04824 0.05645 0.00151 0.1062 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.544 0.595 0.563 0.317 Epoch gpu_mem box obj cls total targets img_size 145 / 299 1.2G 0.04808 0.05874 0.001719 0.1085 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 18 < 00 : 00 , 1.29it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.19it / s] all 172 1.08e + 03 0.562 0.596 0.576 0.321 Epoch gpu_mem box obj cls total targets img_size 146 / 299 1.2G 0.04815 0.05666 0.001936 0.1067 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.585 0.6 0.573 0.32 Epoch gpu_mem box obj cls total targets img_size 147 / 299 1.2G 0.04745 0.0548 0.001744 0.104 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.25it / s] all 172 1.08e + 03 0.565 0.594 0.568 0.317 Epoch gpu_mem box obj cls total targets img_size 148 / 299 1.2G 0.04787 0.05661 0.001942 0.1064 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.607 0.585 0.568 0.318 Epoch gpu_mem box obj cls total targets img_size 149 / 299 1.2G 0.04738 0.05659 0.001664 0.1056 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.574 0.602 0.579 0.328 Epoch gpu_mem box obj cls total targets img_size 150 / 299 1.2G 0.04696 0.05476 0.00164 0.1034 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.616 0.59 0.574 0.322 Epoch gpu_mem box obj cls total targets img_size 151 / 299 1.2G 0.04881 0.05728 0.00236 0.1084 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 14 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.22it / s] all 172 1.08e + 03 0.558 0.593 0.57 0.319 Epoch gpu_mem box obj cls total targets img_size 152 / 299 1.2G 0.0473 0.05643 0.001735 0.1055 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.508 0.6 0.568 0.321 Epoch gpu_mem box obj cls total targets img_size 153 / 299 1.2G 0.04845 0.05748 0.001682 0.1076 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 16 < 00 : 00 , 1.30it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.22it / s] all 172 1.08e + 03 0.578 0.591 0.572 0.321 Epoch gpu_mem box obj cls total targets img_size 154 / 299 1.2G 0.04739 0.05347 0.001702 0.1026 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.23it / s] all 172 1.08e + 03 0.586 0.591 0.573 0.324 Epoch gpu_mem box obj cls total targets img_size 155 / 299 1.2G 0.04716 0.05386 0.001598 0.1026 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 07 < 00 : 00 , 1.33it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.575 0.583 0.562 0.312 Epoch gpu_mem box obj cls total targets img_size 156 / 299 1.2G 0.04686 0.05331 0.001372 0.1015 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 12 < 00 : 00 , 1.31it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.20it / s] all 172 1.08e + 03 0.573 0.599 0.569 0.321 Epoch gpu_mem box obj cls total targets img_size 157 / 299 1.2G 0.04639 0.05463 0.001599 0.1026 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 26 < 00 : 00 , 3.21it / s] all 172 1.08e + 03 0.546 0.596 0.563 0.316 Epoch gpu_mem box obj cls total targets img_size 158 / 299 1.2G 0.04516 0.05301 0.001279 0.09945 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 11 < 00 : 00 , 1.32it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.535 0.592 0.565 0.32 Epoch gpu_mem box obj cls total targets img_size 159 / 299 1.2G 0.05126 0.05831 0.002225 0.1118 30 640 : 25 % |████████████████████████████▉ | 123 / 489 [ 01 : 40 < 05 : 08 , 159 / 299 1.2G 0.0511 0.05799 0.002208 0.1113 7 640 : 25 % |████████████████████████████▉ | 123 / 489 [ 01 : 41 < 05 : 08 , 159 / 299 1.2G 0.0511 0.05799 0.002208 0.1113 7 640 : 25 % |█████████████████████████████▏ | 124 / 489 [ 01 : 41 < 05 : 24 , 159 / 299 1.2G 0.05114 0.05797 0.002193 0.1113 14 640 : 25 % |█████████████████████████████▏ | 124 / 489 [ 01 : 42 < 05 : 24 , 159 / 299 1.2G 0.05114 0.05797 0. 159 / 299 1.2G 0.04592 0.05315 0.001696 0.1008 17 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 46 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.88it / s] all 172 1.08e + 03 0.517 0.594 0.568 0.319 Epoch gpu_mem box obj cls total targets img_size 160 / 299 1.2G 0.04516 0.05387 0.00135 0.1004 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 25 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.495 0.604 0.573 0.327 Epoch gpu_mem box obj cls total targets img_size 161 / 299 1.2G 0.04584 0.05223 0.001433 0.09951 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.91it / s] all 172 1.08e + 03 0.579 0.587 0.568 0.323 Epoch gpu_mem box obj cls total targets img_size 162 / 299 1.2G 0.04619 0.05332 0.001677 0.1012 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 01 < 00 : 00 , 1.16it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.82it / s] all 172 1.08e + 03 0.508 0.601 0.571 0.323 Epoch gpu_mem box obj cls total targets img_size 163 / 299 1.2G 0.04609 0.05408 0.001706 0.1019 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 59 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.96it / s] all 172 1.08e + 03 0.536 0.598 0.568 0.32 Epoch gpu_mem box obj cls total targets img_size 164 / 299 1.2G 0.04591 0.05463 0.001761 0.1023 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 09 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 32 < 00 : 00 , 2.68it / s] all 172 1.08e + 03 0.571 0.576 0.566 0.317 Epoch gpu_mem box obj cls total targets img_size 165 / 299 1.2G 0.04475 0.05155 0.001589 0.09789 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 22 < 00 : 00 , 1.11it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.529 0.589 0.566 0.322 Epoch gpu_mem box obj cls total targets img_size 166 / 299 1.2G 0.04442 0.05339 0.001101 0.09891 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 54 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.488 0.583 0.561 0.319 Epoch gpu_mem box obj cls total targets img_size 167 / 299 1.2G 0.04609 0.05541 0.001555 0.103 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.00it / s] all 172 1.08e + 03 0.424 0.583 0.553 0.313 Epoch gpu_mem box obj cls total targets img_size 168 / 299 1.2G 0.0447 0.05316 0.001333 0.09919 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 38 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.87it / s] all 172 1.08e + 03 0.515 0.593 0.569 0.322 Epoch gpu_mem box obj cls total targets img_size 169 / 299 1.2G 0.04559 0.0515 0.001558 0.09865 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 48 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.562 0.585 0.569 0.32 Epoch gpu_mem box obj cls total targets img_size 170 / 299 1.2G 0.04483 0.05305 0.001236 0.09911 24 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.95it / s] all 172 1.08e + 03 0.54 0.59 0.566 0.321 Epoch gpu_mem box obj cls total targets img_size 171 / 299 1.2G 0.04513 0.05283 0.001129 0.09909 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.94it / s] all 172 1.08e + 03 0.496 0.591 0.564 0.315 Epoch gpu_mem box obj cls total targets img_size 172 / 299 1.2G 0.0445 0.05169 0.001511 0.0977 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 09 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.83it / s] all 172 1.08e + 03 0.554 0.592 0.57 0.324 Epoch gpu_mem box obj cls total targets img_size 173 / 299 1.2G 0.04449 0.05219 0.001329 0.09802 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 30 < 00 : 00 , 1.09it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 31 < 00 : 00 , 2.72it / s] all 172 1.08e + 03 0.512 0.583 0.563 0.325 Epoch gpu_mem box obj cls total targets img_size 174 / 299 1.2G 0.04437 0.05184 0.001415 0.09763 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 55 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.497 0.584 0.561 0.321 Epoch gpu_mem box obj cls total targets img_size 175 / 299 1.2G 0.0448 0.05289 0.001401 0.09909 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 56 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.481 0.591 0.56 0.317 Epoch gpu_mem box obj cls total targets img_size 176 / 299 1.2G 0.04387 0.05113 0.001305 0.09631 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 44 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.592 0.583 0.566 0.323 Epoch gpu_mem box obj cls total targets img_size 177 / 299 1.2G 0.0445 0.05176 0.00185 0.09811 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.02it / s] all 172 1.08e + 03 0.482 0.589 0.563 0.321 Epoch gpu_mem box obj cls total targets img_size 178 / 299 1.2G 0.0443 0.05329 0.001408 0.099 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.5 0.585 0.568 0.318 Epoch gpu_mem box obj cls total targets img_size 179 / 299 1.2G 0.04415 0.0532 0.001338 0.09869 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.441 0.588 0.568 0.323 Epoch gpu_mem box obj cls total targets img_size 180 / 299 1.2G 0.0437 0.05156 0.001395 0.09665 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 26 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.452 0.59 0.568 0.322 Epoch gpu_mem box obj cls total targets img_size 181 / 299 1.2G 0.04429 0.05187 0.001431 0.0976 29 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.446 0.59 0.563 0.318 Epoch gpu_mem box obj cls total targets img_size 182 / 299 1.2G 0.04295 0.05171 0.001134 0.0958 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.42 0.601 0.568 0.322 Epoch gpu_mem box obj cls total targets img_size 183 / 299 1.2G 0.043 0.05045 0.001154 0.0946 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.5 0.585 0.565 0.321 Epoch gpu_mem box obj cls total targets img_size 184 / 299 1.2G 0.04163 0.04862 0.001295 0.09155 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.452 0.586 0.56 0.322 Epoch gpu_mem box obj cls total targets img_size 185 / 299 1.2G 0.04283 0.05146 0.001036 0.09532 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.438 0.58 0.558 0.317 Epoch gpu_mem box obj cls total targets img_size 186 / 299 1.2G 0.04348 0.05075 0.001189 0.09541 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.444 0.589 0.555 0.31 Epoch gpu_mem box obj cls total targets img_size 187 / 299 1.2G 0.0424 0.05149 0.001045 0.09493 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.544 0.583 0.557 0.321 Epoch gpu_mem box obj cls total targets img_size 188 / 299 1.2G 0.0429 0.05112 0.001079 0.0951 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.459 0.591 0.564 0.326 Epoch gpu_mem box obj cls total targets img_size 189 / 299 1.2G 0.04222 0.0491 0.00103 0.09235 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.473 0.584 0.558 0.322 Epoch gpu_mem box obj cls total targets img_size 190 / 299 1.2G 0.04211 0.04971 0.001136 0.09296 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.469 0.584 0.562 0.323 Epoch gpu_mem box obj cls total targets img_size 191 / 299 1.2G 0.04183 0.04919 0.001047 0.09206 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.439 0.575 0.557 0.319 Epoch gpu_mem box obj cls total targets img_size 192 / 299 1.2G 0.04146 0.04893 0.001242 0.09164 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 37 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.02it / s] all 172 1.08e + 03 0.465 0.591 0.566 0.322 Epoch gpu_mem box obj cls total targets img_size 193 / 299 1.2G 0.0419 0.04933 0.00134 0.09257 25 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 08 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 31 < 00 : 00 , 2.74it / s] all 172 1.08e + 03 0.447 0.582 0.559 0.322 Epoch gpu_mem box obj cls total targets img_size 194 / 299 1.2G 0.04222 0.04987 0.001182 0.09327 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 21 < 00 : 00 , 1.11it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.78it / s] all 172 1.08e + 03 0.483 0.584 0.563 0.322 Epoch gpu_mem box obj cls total targets img_size 195 / 299 1.2G 0.04171 0.04783 0.001265 0.0908 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 26 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 31 < 00 : 00 , 2.76it / s] all 172 1.08e + 03 0.459 0.594 0.567 0.323 Epoch gpu_mem box obj cls total targets img_size 196 / 299 1.2G 0.04254 0.04947 0.001123 0.09313 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 31 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 31 < 00 : 00 , 2.76it / s] all 172 1.08e + 03 0.511 0.584 0.56 0.319 Epoch gpu_mem box obj cls total targets img_size 197 / 299 1.2G 0.04231 0.05051 0.001134 0.09395 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 24 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.85it / s] all 172 1.08e + 03 0.468 0.581 0.559 0.322 Epoch gpu_mem box obj cls total targets img_size 198 / 299 1.2G 0.04136 0.049 0.001512 0.09188 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 14 < 00 : 00 , 1.12it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.431 0.585 0.558 0.321 Epoch gpu_mem box obj cls total targets img_size 199 / 299 1.2G 0.0422 0.0487 0.00122 0.09212 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 53 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.439 0.576 0.548 0.312 Epoch gpu_mem box obj cls total targets img_size 200 / 299 1.2G 0.04149 0.04985 0.001229 0.09257 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.502 0.586 0.566 0.324 Epoch gpu_mem box obj cls total targets img_size 201 / 299 1.2G 0.04087 0.04901 0.001145 0.09102 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 47 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.86it / s] all 172 1.08e + 03 0.447 0.577 0.558 0.319 Epoch gpu_mem box obj cls total targets img_size 202 / 299 1.2G 0.04084 0.04762 0.001189 0.08965 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 48 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.92it / s] all 172 1.08e + 03 0.435 0.59 0.565 0.321 Epoch gpu_mem box obj cls total targets img_size 203 / 299 1.2G 0.04152 0.05013 0.001394 0.09305 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 05 < 00 : 00 , 1.15it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.373 0.579 0.551 0.315 Epoch gpu_mem box obj cls total targets img_size 204 / 299 1.2G 0.04016 0.04797 0.00124 0.08937 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.468 0.575 0.554 0.317 Epoch gpu_mem box obj cls total targets img_size 205 / 299 1.2G 0.04039 0.04727 0.001049 0.08871 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 44 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.475 0.587 0.558 0.314 Epoch gpu_mem box obj cls total targets img_size 206 / 299 1.2G 0.04072 0.04835 0.001059 0.09013 17 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 43 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.457 0.595 0.568 0.328 Epoch gpu_mem box obj cls total targets img_size 207 / 299 1.2G 0.04052 0.048 0.001085 0.08961 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.449 0.592 0.563 0.32 Epoch gpu_mem box obj cls total targets img_size 208 / 299 1.2G 0.0406 0.0484 0.001165 0.09016 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 22 < 00 : 00 , 1.28it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 32 < 00 : 00 , 2.63it / s] all 172 1.08e + 03 0.364 0.588 0.56 0.318 Epoch gpu_mem box obj cls total targets img_size 209 / 299 1.2G 0.04041 0.04772 0.001174 0.0893 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 26 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.93it / s] all 172 1.08e + 03 0.476 0.591 0.56 0.318 Epoch gpu_mem box obj cls total targets img_size 210 / 299 1.2G 0.04081 0.04713 0.00115 0.08909 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 56 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.87it / s] all 172 1.08e + 03 0.439 0.577 0.55 0.314 Epoch gpu_mem box obj cls total targets img_size 211 / 299 1.2G 0.04005 0.04572 0.001042 0.08681 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.96it / s] all 172 1.08e + 03 0.397 0.575 0.549 0.315 Epoch gpu_mem box obj cls total targets img_size 212 / 299 1.2G 0.04055 0.04815 0.001022 0.08972 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 46 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.95it / s] all 172 1.08e + 03 0.382 0.578 0.545 0.311 Epoch gpu_mem box obj cls total targets img_size 213 / 299 1.2G 0.03967 0.04538 0.001452 0.0865 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 54 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.382 0.582 0.553 0.314 Epoch gpu_mem box obj cls total targets img_size 214 / 299 1.2G 0.0401 0.04648 0.001198 0.08778 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 40 < 00 : 00 , 1.22it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.364 0.578 0.547 0.314 Epoch gpu_mem box obj cls total targets img_size 215 / 299 1.2G 0.03896 0.04535 0.0008779 0.08518 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 33 < 00 : 00 , 1.08it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.373 0.567 0.543 0.306 Epoch gpu_mem box obj cls total targets img_size 216 / 299 1.2G 0.0394 0.04609 0.000846 0.08633 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 58 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.79it / s] all 172 1.08e + 03 0.401 0.577 0.547 0.309 Epoch gpu_mem box obj cls total targets img_size 217 / 299 1.2G 0.03957 0.04709 0.0009619 0.08762 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 35 < 00 : 00 , 1.07it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 31 < 00 : 00 , 2.76it / s] all 172 1.08e + 03 0.46 0.571 0.549 0.311 Epoch gpu_mem box obj cls total targets img_size 218 / 299 1.2G 0.0396 0.04719 0.001016 0.0878 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 09 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.92it / s] all 172 1.08e + 03 0.48 0.584 0.562 0.32 Epoch gpu_mem box obj cls total targets img_size 219 / 299 1.2G 0.03936 0.04799 0.000859 0.08821 27 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 02 < 00 : 00 , 1.16it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.456 0.571 0.548 0.315 Epoch gpu_mem box obj cls total targets img_size 220 / 299 1.2G 0.03891 0.04636 0.0009764 0.08625 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 42 < 00 : 00 , 1.22it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.435 0.575 0.555 0.315 Epoch gpu_mem box obj cls total targets img_size 221 / 299 1.2G 0.03863 0.04621 0.0008572 0.08569 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 42 < 00 : 00 , 1.22it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.398 0.579 0.55 0.315 Epoch gpu_mem box obj cls total targets img_size 222 / 299 1.2G 0.03826 0.04591 0.0009931 0.08517 14 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 45 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.04it / s] all 172 1.08e + 03 0.419 0.579 0.552 0.312 Epoch gpu_mem box obj cls total targets img_size 223 / 299 1.2G 0.03897 0.04604 0.001219 0.08623 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 43 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.454 0.57 0.545 0.311 Epoch gpu_mem box obj cls total targets img_size 224 / 299 1.2G 0.03857 0.04549 0.001121 0.08518 20 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.476 0.577 0.549 0.313 Epoch gpu_mem box obj cls total targets img_size 225 / 299 1.2G 0.03825 0.04582 0.0007369 0.08481 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 35 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.428 0.574 0.553 0.314 Epoch gpu_mem box obj cls total targets img_size 226 / 299 1.2G 0.03797 0.04663 0.0007943 0.0854 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.424 0.573 0.553 0.315 Epoch gpu_mem box obj cls total targets img_size 227 / 299 1.2G 0.03723 0.04431 0.0007884 0.08233 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.396 0.568 0.544 0.309 Epoch gpu_mem box obj cls total targets img_size 228 / 299 1.2G 0.03803 0.04516 0.0007417 0.08394 18 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 38 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.428 0.57 0.546 0.311 Epoch gpu_mem box obj cls total targets img_size 229 / 299 1.2G 0.03841 0.04497 0.0008211 0.0842 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 46 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.399 0.569 0.542 0.312 Epoch gpu_mem box obj cls total targets img_size 230 / 299 1.2G 0.03731 0.04412 0.000698 0.08212 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 45 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.02it / s] all 172 1.08e + 03 0.426 0.574 0.546 0.308 Epoch gpu_mem box obj cls total targets img_size 231 / 299 1.2G 0.03699 0.04314 0.0008708 0.081 0 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 48 < 00 : 00 , 1.20it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.398 0.575 0.551 0.315 Epoch gpu_mem box obj cls total targets img_size 232 / 299 1.2G 0.03721 0.04302 0.001031 0.08126 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 54 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.459 0.569 0.547 0.31 Epoch gpu_mem box obj cls total targets img_size 233 / 299 1.2G 0.03783 0.04268 0.0008267 0.08134 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.418 0.569 0.545 0.312 Epoch gpu_mem box obj cls total targets img_size 234 / 299 1.2G 0.03701 0.042 0.00078 0.07979 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 37 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.471 0.565 0.544 0.309 Epoch gpu_mem box obj cls total targets img_size 235 / 299 1.2G 0.03742 0.0431 0.0007541 0.08128 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.456 0.573 0.551 0.312 Epoch gpu_mem box obj cls total targets img_size 236 / 299 1.2G 0.03748 0.04427 0.0007806 0.08253 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.92it / s] all 172 1.08e + 03 0.475 0.572 0.553 0.313 Epoch gpu_mem box obj cls total targets img_size 237 / 299 1.2G 0.03704 0.04425 0.0009394 0.08222 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 45 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.80it / s] all 172 1.08e + 03 0.466 0.585 0.556 0.313 Epoch gpu_mem box obj cls total targets img_size 238 / 299 1.2G 0.0371 0.04427 0.001008 0.08238 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 03 < 00 : 00 , 1.15it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.464 0.56 0.54 0.31 Epoch gpu_mem box obj cls total targets img_size 239 / 299 1.2G 0.03703 0.04406 0.001114 0.0822 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 39 < 00 : 00 , 1.22it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.486 0.569 0.547 0.311 Epoch gpu_mem box obj cls total targets img_size 240 / 299 1.2G 0.03623 0.04263 0.0008085 0.07967 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 53 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.47 0.578 0.547 0.312 Epoch gpu_mem box obj cls total targets img_size 241 / 299 1.2G 0.03665 0.04112 0.000946 0.07871 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 10 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.09it / s] all 172 1.08e + 03 0.436 0.573 0.545 0.311 Epoch gpu_mem box obj cls total targets img_size 242 / 299 1.2G 0.03713 0.04364 0.0009341 0.08171 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 15 < 00 : 00 , 1.12it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.438 0.571 0.542 0.309 Epoch gpu_mem box obj cls total targets img_size 243 / 299 1.2G 0.03626 0.04369 0.0008375 0.08079 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 38 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.444 0.572 0.544 0.311 Epoch gpu_mem box obj cls total targets img_size 244 / 299 1.2G 0.0366 0.04327 0.0007693 0.08064 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.02it / s] all 172 1.08e + 03 0.448 0.58 0.551 0.315 Epoch gpu_mem box obj cls total targets img_size 245 / 299 1.2G 0.03608 0.0421 0.000672 0.07885 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 52 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 32 < 00 : 00 , 2.66it / s] all 172 1.08e + 03 0.434 0.576 0.546 0.314 Epoch gpu_mem box obj cls total targets img_size 246 / 299 1.2G 0.03564 0.04182 0.0007608 0.07822 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 58 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.86it / s] all 172 1.08e + 03 0.469 0.573 0.549 0.314 Epoch gpu_mem box obj cls total targets img_size 247 / 299 1.2G 0.03628 0.0437 0.0007782 0.08075 26 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 14 < 00 : 00 , 1.13it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.05it / s] all 172 1.08e + 03 0.498 0.574 0.549 0.314 Epoch gpu_mem box obj cls total targets img_size 248 / 299 1.2G 0.0362 0.04481 0.0007092 0.08172 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 43 < 00 : 00 , 1.21it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.499 0.559 0.537 0.308 Epoch gpu_mem box obj cls total targets img_size 249 / 299 1.2G 0.03616 0.04355 0.0008428 0.08056 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 01 < 00 : 00 , 1.16it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.03it / s] all 172 1.08e + 03 0.409 0.564 0.538 0.309 Epoch gpu_mem box obj cls total targets img_size 250 / 299 1.2G 0.03625 0.04162 0.0007946 0.07866 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 52 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 3.06it / s] all 172 1.08e + 03 0.444 0.572 0.546 0.315 Epoch gpu_mem box obj cls total targets img_size 251 / 299 1.2G 0.03603 0.04244 0.0008036 0.07928 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 07 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 30 < 00 : 00 , 2.81it / s] all 172 1.08e + 03 0.477 0.567 0.546 0.314 Epoch gpu_mem box obj cls total targets img_size 252 / 299 1.2G 0.0366 0.0426 0.0008453 0.08004 17 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 08 : 09 < 00 : 00 , 1.00s / it] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 32 < 00 : 00 , 2.62it / s] all 172 1.08e + 03 0.462 0.572 0.547 0.313 Epoch gpu_mem box obj cls total targets img_size 253 / 299 1.2G 0.036 0.0426 0.0006212 0.07922 35 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 23 < 00 : 00 , 1.10it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.90it / s] all 172 1.08e + 03 0.409 0.579 0.552 0.314 Epoch gpu_mem box obj cls total targets img_size 254 / 299 1.2G 0.03636 0.04186 0.00071 0.07893 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 02 < 00 : 00 , 1.16it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.408 0.571 0.548 0.311 Epoch gpu_mem box obj cls total targets img_size 255 / 299 1.2G 0.0361 0.04197 0.0007624 0.07884 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 52 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.43 0.577 0.551 0.313 Epoch gpu_mem box obj cls total targets img_size 256 / 299 1.2G 0.03561 0.04424 0.0007805 0.08062 17 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 57 < 00 : 00 , 1.17it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.459 0.583 0.554 0.314 Epoch gpu_mem box obj cls total targets img_size 257 / 299 1.2G 0.03569 0.04106 0.0006793 0.07743 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.95it / s] all 172 1.08e + 03 0.474 0.576 0.548 0.312 Epoch gpu_mem box obj cls total targets img_size 258 / 299 1.2G 0.03575 0.04205 0.0009078 0.07871 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 53 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.99it / s] all 172 1.08e + 03 0.521 0.58 0.555 0.315 Epoch gpu_mem box obj cls total targets img_size 259 / 299 1.2G 0.03617 0.04339 0.0009862 0.08055 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 50 < 00 : 00 , 1.19it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 29 < 00 : 00 , 2.96it / s] all 172 1.08e + 03 0.484 0.572 0.55 0.311 Epoch gpu_mem box obj cls total targets img_size 260 / 299 1.2G 0.03543 0.04128 0.0008562 0.07757 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 55 < 00 : 00 , 1.18it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 28 < 00 : 00 , 2.97it / s] all 172 1.08e + 03 0.494 0.569 0.545 0.314 Epoch gpu_mem box obj cls total targets img_size 261 / 299 1.2G 0.03526 0.04086 0.0007378 0.07686 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 07 : 09 < 00 : 00 , 1.14it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.458 0.57 0.542 0.311 Epoch gpu_mem box obj cls total targets img_size 262 / 299 1.2G 0.03498 0.04127 0.001097 0.07735 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 23 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.417 0.57 0.541 0.31 Epoch gpu_mem box obj cls total targets img_size 263 / 299 1.2G 0.03485 0.03975 0.0008676 0.07546 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 25 < 00 : 00 , 1.27it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.445 0.57 0.55 0.315 Epoch gpu_mem box obj cls total targets img_size 264 / 299 1.2G 0.03529 0.04208 0.0008275 0.0782 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.483 0.581 0.554 0.316 Epoch gpu_mem box obj cls total targets img_size 265 / 299 1.2G 0.03592 0.04256 0.000835 0.07931 6 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.48 0.58 0.554 0.318 Epoch gpu_mem box obj cls total targets img_size 266 / 299 1.2G 0.03472 0.04064 0.0006956 0.07606 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 26 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.476 0.572 0.551 0.313 Epoch gpu_mem box obj cls total targets img_size 267 / 299 1.2G 0.03513 0.04061 0.0008836 0.07662 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.498 0.578 0.551 0.313 Epoch gpu_mem box obj cls total targets img_size 268 / 299 1.2G 0.03494 0.04153 0.0008648 0.07734 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.486 0.573 0.548 0.311 Epoch gpu_mem box obj cls total targets img_size 269 / 299 1.2G 0.03493 0.04055 0.0008033 0.07628 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.458 0.578 0.548 0.314 Epoch gpu_mem box obj cls total targets img_size 270 / 299 1.2G 0.03459 0.04111 0.000684 0.07639 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.458 0.576 0.545 0.312 Epoch gpu_mem box obj cls total targets img_size 271 / 299 1.2G 0.03461 0.04034 0.0006801 0.07563 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.478 0.573 0.546 0.311 Epoch gpu_mem box obj cls total targets img_size 272 / 299 1.2G 0.03529 0.04147 0.0006838 0.07744 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.466 0.568 0.545 0.311 Epoch gpu_mem box obj cls total targets img_size 273 / 299 1.2G 0.03419 0.03977 0.0005537 0.07451 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.482 0.569 0.544 0.312 Epoch gpu_mem box obj cls total targets img_size 274 / 299 1.2G 0.03398 0.04049 0.0007291 0.07519 12 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.477 0.564 0.54 0.308 Epoch gpu_mem box obj cls total targets img_size 275 / 299 1.2G 0.0339 0.04142 0.0005955 0.07592 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.17it / s] all 172 1.08e + 03 0.527 0.573 0.548 0.313 Epoch gpu_mem box obj cls total targets img_size 276 / 299 1.2G 0.03421 0.04019 0.000868 0.07527 13 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.505 0.577 0.553 0.32 Epoch gpu_mem box obj cls total targets img_size 277 / 299 1.2G 0.03449 0.04113 0.0008044 0.07642 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.515 0.575 0.552 0.318 Epoch gpu_mem box obj cls total targets img_size 278 / 299 1.2G 0.03386 0.04065 0.0007791 0.0753 1 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.494 0.578 0.553 0.319 Epoch gpu_mem box obj cls total targets img_size 279 / 299 1.2G 0.03448 0.04151 0.0007553 0.07674 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.18it / s] all 172 1.08e + 03 0.469 0.576 0.548 0.314 Epoch gpu_mem box obj cls total targets img_size 280 / 299 1.2G 0.0343 0.04046 0.0006161 0.07537 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 28 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.531 0.567 0.552 0.318 Epoch gpu_mem box obj cls total targets img_size 281 / 299 1.2G 0.03405 0.04077 0.0007284 0.07555 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 38 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.556 0.57 0.553 0.316 Epoch gpu_mem box obj cls total targets img_size 282 / 299 1.2G 0.03401 0.03965 0.0007538 0.07442 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 27 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.519 0.569 0.551 0.316 Epoch gpu_mem box obj cls total targets img_size 283 / 299 1.2G 0.03374 0.03826 0.0006904 0.07269 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.515 0.574 0.551 0.314 Epoch gpu_mem box obj cls total targets img_size 284 / 299 1.2G 0.03384 0.04071 0.0007543 0.07531 10 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.492 0.57 0.552 0.317 Epoch gpu_mem box obj cls total targets img_size 285 / 299 1.2G 0.03386 0.04054 0.0007051 0.0751 5 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.475 0.573 0.549 0.312 Epoch gpu_mem box obj cls total targets img_size 286 / 299 1.2G 0.03465 0.04043 0.0005846 0.07567 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.07it / s] all 172 1.08e + 03 0.489 0.577 0.55 0.313 Epoch gpu_mem box obj cls total targets img_size 287 / 299 1.2G 0.03377 0.03908 0.0006558 0.0735 15 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.49 0.57 0.548 0.31 Epoch gpu_mem box obj cls total targets img_size 288 / 299 1.2G 0.034 0.04016 0.0006542 0.07481 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.16it / s] all 172 1.08e + 03 0.489 0.572 0.552 0.317 Epoch gpu_mem box obj cls total targets img_size 289 / 299 1.2G 0.03363 0.04093 0.0008538 0.07542 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 30 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.543 0.574 0.553 0.316 Epoch gpu_mem box obj cls total targets img_size 290 / 299 1.2G 0.03375 0.04111 0.0005462 0.07541 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 35 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.514 0.569 0.549 0.315 Epoch gpu_mem box obj cls total targets img_size 291 / 299 1.2G 0.03384 0.03921 0.0007085 0.07376 9 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 29 < 00 : 00 , 1.26it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.14it / s] all 172 1.08e + 03 0.504 0.57 0.547 0.315 Epoch gpu_mem box obj cls total targets img_size 292 / 299 1.2G 0.03358 0.03853 0.0006689 0.07278 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 31 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.10it / s] all 172 1.08e + 03 0.522 0.575 0.548 0.315 Epoch gpu_mem box obj cls total targets img_size 293 / 299 1.2G 0.03335 0.03817 0.0004774 0.072 4 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.554 0.57 0.553 0.316 Epoch gpu_mem box obj cls total targets img_size 294 / 299 1.2G 0.03318 0.04106 0.0007152 0.07495 8 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.576 0.565 0.553 0.316 Epoch gpu_mem box obj cls total targets img_size 295 / 299 1.2G 0.03338 0.03879 0.0005385 0.07271 2 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 33 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.15it / s] all 172 1.08e + 03 0.576 0.566 0.552 0.314 Epoch gpu_mem box obj cls total targets img_size 296 / 299 1.2G 0.03311 0.03826 0.0006598 0.07202 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 32 < 00 : 00 , 1.25it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.13it / s] all 172 1.08e + 03 0.53 0.57 0.553 0.314 Epoch gpu_mem box obj cls total targets img_size 297 / 299 1.2G 0.03343 0.04039 0.0006336 0.07445 7 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 34 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.08it / s] all 172 1.08e + 03 0.529 0.572 0.549 0.315 Epoch gpu_mem box obj cls total targets img_size 298 / 299 1.2G 0.03296 0.03958 0.0005584 0.0731 11 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 35 < 00 : 00 , 1.24it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.11it / s] all 172 1.08e + 03 0.551 0.569 0.548 0.313 Epoch gpu_mem box obj cls total targets img_size 299 / 299 1.2G 0.0328 0.03833 0.0006634 0.07179 3 640 : 100 % |███████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 489 / 489 [ 06 : 36 < 00 : 00 , 1.23it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████████████████████████████████████████████████████| 86 / 86 [ 00 : 27 < 00 : 00 , 3.12it / s] all 172 1.08e + 03 0.531 0.569 0.549 0.313 Optimizer stripped from runs\train\exp\weights\last.pt, 42.5MB Optimizer stripped from runs\train\exp\weights\best.pt, 42.5MB 300 epochs completed in 35.129 hours. (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> (wind_2021) J:\PytorchProject\yolov5_train_pest_2024061501> |
########################################
QQ 3087438119
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
2023-06-17 设备控制
2022-06-17 opencv打开摄像头
2021-06-17 依次加载每一个ifc构件
2020-06-17 IfcRepresentationItem
2020-06-17 IfcAxis1Placement
2019-06-17 QPixmap QImage 相互转化
2019-06-17 QString std::string 相互转 含中文