yolov5训练栏杆检测模型日志记录
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 | (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901> (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901> (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901> (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901>python train_2023050901.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\\exp4' , single_cls=False, sync_bn=False, total_batch_size= 2 , weights= 'yolov5s.pt' , workers= 0 , world_size= 1 ) Start Tensorboard with "tensorboard --logdir runs/train" , view at http: //localhost:6006/ Hyperparameters { 'lr0' : 0.01 , 'lrf' : 0.2 , 'momentum' : 0.937 , 'weight_decay' : 0.0005 , 'warmup_epochs' : 3.0 , 'warmup_momentum' : 0.8 , 'warmup_bias_lr' : 0.1 , 'box' : 0.05 , 'cls' : 0.5 , 'cls_pw' : 1.0 , 'obj' : 1.0 , 'obj_pw' : 1.0 , 'iou_t' : 0.2 , 'anchor_t' : 4.0 , 'fl_gamma' : 0.0 , 'hsv_h' : 0.015 , 'hsv_s' : 0.7 , 'hsv_v' : 0.4 , 'degrees' : 0.0 , 'translate' : 0.1 , 'scale' : 0.5 , 'shear' : 0.0 , 'perspective' : 0.0 , 'flipud' : 0.0 , 'fliplr' : 0.5 , 'mosaic' : 1.0 , 'mixup' : 0.0 } Overriding model.yaml nc= 80 with nc= 1 from n params module arguments 0 - 1 1 5280 models.common.Focus [ 3 , 48 , 3 ] 1 - 1 1 41664 models.common.Conv [ 48 , 96 , 3 , 2 ] 2 - 1 1 65280 models.common.C3 [ 96 , 96 , 2 ] 3 - 1 1 166272 models.common.Conv [ 96 , 192 , 3 , 2 ] 4 - 1 1 629760 models.common.C3 [ 192 , 192 , 6 ] 5 - 1 1 664320 models.common.Conv [ 192 , 384 , 3 , 2 ] 6 - 1 1 2512896 models.common.C3 [ 384 , 384 , 6 ] 7 - 1 1 2655744 models.common.Conv [ 384 , 768 , 3 , 2 ] 8 - 1 1 1476864 models.common.SPP [ 768 , 768 , [ 5 , 9 , 13 ]] 9 - 1 1 4134912 models.common.C3 [ 768 , 768 , 2 , False] 10 - 1 1 295680 models.common.Conv [ 768 , 384 , 1 , 1 ] 11 - 1 1 0 torch.nn.modules.upsampling.Upsample [None, 2 , 'nearest' ] 12 [- 1 , 6 ] 1 0 models.common.Concat [ 1 ] 13 - 1 1 1182720 models.common.C3 [ 768 , 384 , 2 , False] 14 - 1 1 74112 models.common.Conv [ 384 , 192 , 1 , 1 ] 15 - 1 1 0 torch.nn.modules.upsampling.Upsample [None, 2 , 'nearest' ] 16 [- 1 , 4 ] 1 0 models.common.Concat [ 1 ] 17 - 1 1 296448 models.common.C3 [ 384 , 192 , 2 , False] 18 - 1 1 332160 models.common.Conv [ 192 , 192 , 3 , 2 ] 19 [- 1 , 14 ] 1 0 models.common.Concat [ 1 ] 20 - 1 1 1035264 models.common.C3 [ 384 , 384 , 2 , False] 21 - 1 1 1327872 models.common.Conv [ 384 , 384 , 3 , 2 ] 22 [- 1 , 10 ] 1 0 models.common.Concat [ 1 ] 23 - 1 1 4134912 models.common.C3 [ 768 , 768 , 2 , False] 24 [ 17 , 20 , 23 ] 1 24246 models.yolo.Detect [ 1 , [[ 10 , 13 , 16 , 30 , 33 , 23 ], [ 30 , 61 , 62 , 45 , 59 , 119 ], [ 116 , 90 , 156 , 198 , 373 , 326 ]], [ 192 , 384 , 768 ]] Model Summary: 391 layers, 21056406 parameters, 21056406 gradients, 50.4 GFLOPS Transferred 59 / 506 items from yolov5s.pt Scaled weight_decay = 0.0005 Optimizer groups: 86 .bias, 86 conv.weight, 83 other Scanning 'VOC_2023050902\labels' for images and labels... 348 found, 1 missing, 0 empty, 0 corrupted: 100 %|█████████████████████████████████████████████| 349 / 349 [ 00 : 00 < 00 : 00 , 1999 .21it/s] New cache created: VOC_2023050902\labels.cache Scanning 'VOC_2023050902\labels' for images and labels... 96 found, 0 missing, 0 empty, 0 corrupted: 100 %|████████████████████████████████████████████████| 96 / 96 [ 00 : 00 < 00 : 00 , 2092 .53it/s] New cache created: VOC_2023050902\labels.cache | 0 / 96 [ 00 : 00 <?, ?it/s] Plotting labels... 050902 \labels.cache' for images and labels... 96 found, 0 missing, 0 empty, 0 corrupted: 100 %|████████████████████████████████████████████████████| 96 / 96 [ 00 : 00 <?, ?it/s] Scanning 'VOC_2023050902\labels.cache' for images and labels... 348 found, 1 missing, 0 empty, 0 corrupted: 100 %|█████████████████████████████████████████████████| 349 / 349 [ 00 : 00 <?, ?it/s] Scanning 'VOC_2023050902\labels.cache' for images and labels... 96 found, 0 missing, 0 empty, 0 corrupted: 100 %|████████████████████████████████████████████████████| 96 / 96 [ 00 : 00 <?, ?it/s] Analyzing anchors... anchors/target = 2.32 , Best Possible Recall (BPR) = 1.0000 Image sizes 640 train, 640 test Using 0 dataloader workers Logging results to runs\train\exp4 Starting training for 300 epochs... Epoch gpu_mem box obj cls total targets img_size 0 / 299 1 .14G 0.07386 0.02321 0 0.09707 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 50 < 00 : 00 , 3 .44it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 07 < 00 : 00 , 6 .72it/s] all 96 96 0 0 0.000684 7 .81e- 05 Epoch gpu_mem box obj cls total targets img_size 1 / 299 1 .2G 0.06463 0.02125 0 0.08588 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .83it/s] all 96 96 0.0108 0.0104 0.00318 0.000574 Epoch gpu_mem box obj cls total targets img_size 2 / 299 1 .2G 0.05991 0.02055 0 0.08046 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .49it/s] all 96 96 0 0 0.00554 0.000567 Epoch gpu_mem box obj cls total targets img_size 3 / 299 1 .2G 0.05624 0.01997 0 0.07621 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .56it/s] all 96 96 0 0 0.00166 0.000174 Epoch gpu_mem box obj cls total targets img_size 4 / 299 1 .2G 0.0575 0.01976 0 0.07725 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .57it/s] all 96 96 0 0 0.00336 0.000406 Epoch gpu_mem box obj cls total targets img_size 5 / 299 1 .2G 0.05436 0.01959 0 0.07395 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 9 .25it/s] all 96 96 0 0 0.00265 0.000353 Epoch gpu_mem box obj cls total targets img_size 6 / 299 1 .2G 0.05287 0.01886 0 0.07173 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .07it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 06 < 00 : 00 , 7 .59it/s] all 96 96 0 0 0.00377 0.000431 Epoch gpu_mem box obj cls total targets img_size 7 / 299 1 .2G 0.05085 0.01894 0 0.06979 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .17it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .22it/s] all 96 96 0 0 0.00302 0.000358 Epoch gpu_mem box obj cls total targets img_size 8 / 299 1 .2G 0.05068 0.0182 0 0.06887 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .40it/s] all 96 96 0 0 0.00603 0.000722 Epoch gpu_mem box obj cls total targets img_size 9 / 299 1 .2G 0.05246 0.0182 0 0.07066 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .22it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .19it/s] all 96 96 0 0 0.00957 0.0013 Epoch gpu_mem box obj cls total targets img_size 10 / 299 1 .2G 0.05148 0.01808 0 0.06956 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .16it/s] all 96 96 0 0 0.0132 0.00163 Epoch gpu_mem box obj cls total targets img_size 11 / 299 1 .2G 0.04793 0.01774 0 0.06567 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .46it/s] all 96 96 0 0 0.00643 0.000726 Epoch gpu_mem box obj cls total targets img_size 12 / 299 1 .2G 0.04775 0.01679 0 0.06455 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .55it/s] all 96 96 1 0.0104 0.292 0.0801 Epoch gpu_mem box obj cls total targets img_size 13 / 299 1 .2G 0.0462 0.01776 0 0.06396 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .14it/s] all 96 96 0 0 0.0117 0.00168 Epoch gpu_mem box obj cls total targets img_size 14 / 299 1 .2G 0.04435 0.01589 0 0.06025 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .39it/s] all 96 96 0 0 0.0326 0.00456 Epoch gpu_mem box obj cls total targets img_size 15 / 299 1 .2G 0.04389 0.01667 0 0.06056 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .05it/s] all 96 96 0.25 0.688 0.324 0.0407 Epoch gpu_mem box obj cls total targets img_size 16 / 299 1 .2G 0.04303 0.01633 0 0.05936 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .54it/s] all 96 96 0.164 0.42 0.26 0.0487 Epoch gpu_mem box obj cls total targets img_size 17 / 299 1 .2G 0.04219 0.01563 0 0.05782 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .80it/s] all 96 96 0.218 0.812 0.461 0.117 Epoch gpu_mem box obj cls total targets img_size 18 / 299 1 .2G 0.04425 0.01567 0 0.05992 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .94it/s] all 96 96 0.0948 0.104 0.0406 0.00564 Epoch gpu_mem box obj cls total targets img_size 19 / 299 1 .2G 0.04247 0.01537 0 0.05784 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .48it/s] all 96 96 0.765 0.136 0.357 0.118 Epoch gpu_mem box obj cls total targets img_size 20 / 299 1 .2G 0.04216 0.01549 0 0.05765 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .60it/s] all 96 96 0.236 0.812 0.372 0.111 Epoch gpu_mem box obj cls total targets img_size 21 / 299 1 .2G 0.04217 0.01687 0 0.05904 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .58it/s] all 96 96 0.0623 0.625 0.188 0.0463 Epoch gpu_mem box obj cls total targets img_size 22 / 299 1 .2G 0.03696 0.01444 0 0.0514 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .64it/s] all 96 96 0.0651 0.823 0.275 0.0519 Epoch gpu_mem box obj cls total targets img_size 23 / 299 1 .2G 0.03624 0.0153 0 0.05155 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .62it/s] all 96 96 0.182 0.865 0.354 0.0689 Epoch gpu_mem box obj cls total targets img_size 24 / 299 1 .2G 0.03695 0.01603 0 0.05298 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.163 0.688 0.189 0.0271 Epoch gpu_mem box obj cls total targets img_size 25 / 299 1 .2G 0.0357 0.01539 0 0.05109 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.199 0.896 0.306 0.0649 Epoch gpu_mem box obj cls total targets img_size 26 / 299 1 .2G 0.0356 0.01473 0 0.05034 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .28it/s] all 96 96 0.228 0.885 0.695 0.191 Epoch gpu_mem box obj cls total targets img_size 27 / 299 1 .2G 0.03615 0.01555 0 0.0517 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .31it/s] all 96 96 0.232 0.896 0.66 0.148 Epoch gpu_mem box obj cls total targets img_size 28 / 299 1 .2G 0.03298 0.01477 0 0.04775 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .30it/s] all 96 96 0.233 0.927 0.569 0.158 Epoch gpu_mem box obj cls total targets img_size 29 / 299 1 .2G 0.03386 0.01471 0 0.04857 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .73it/s] all 96 96 0.254 0.917 0.715 0.265 Epoch gpu_mem box obj cls total targets img_size 30 / 299 1 .2G 0.03159 0.01416 0 0.04575 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .91it/s] all 96 96 0.29 0.76 0.332 0.0612 Epoch gpu_mem box obj cls total targets img_size 31 / 299 1 .2G 0.0325 0.01405 0 0.04655 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .98it/s] all 96 96 0.182 0.729 0.499 0.103 Epoch gpu_mem box obj cls total targets img_size 32 / 299 1 .2G 0.03231 0.01438 0 0.04668 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .74it/s] all 96 96 0.0141 0.292 0.0055 0.000744 Epoch gpu_mem box obj cls total targets img_size 33 / 299 1 .2G 0.03095 0.01469 0 0.04564 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.249 0.812 0.699 0.312 Epoch gpu_mem box obj cls total targets img_size 34 / 299 1 .2G 0.02998 0.01375 0 0.04373 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .18it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .21it/s] all 96 96 0.315 0.927 0.807 0.37 Epoch gpu_mem box obj cls total targets img_size 35 / 299 1 .2G 0.0272 0.01347 0 0.04068 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .16it/s] all 96 96 0.342 0.958 0.855 0.369 Epoch gpu_mem box obj cls total targets img_size 36 / 299 1 .2G 0.02996 0.01267 0 0.04263 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .04it/s] all 96 96 0.424 0.885 0.823 0.308 Epoch gpu_mem box obj cls total targets img_size 37 / 299 1 .2G 0.02938 0.01256 0 0.04194 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .32it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.389 0.927 0.846 0.345 Epoch gpu_mem box obj cls total targets img_size 38 / 299 1 .2G 0.02678 0.01267 0 0.03945 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .33it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.371 0.917 0.78 0.279 Epoch gpu_mem box obj cls total targets img_size 39 / 299 1 .2G 0.02711 0.01295 0 0.04005 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .32it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.396 0.927 0.875 0.354 Epoch gpu_mem box obj cls total targets img_size 40 / 299 1 .2G 0.0292 0.0131 0 0.0423 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .62it/s] all 96 96 0.0932 0.802 0.179 0.0579 Epoch gpu_mem box obj cls total targets img_size 41 / 299 1 .2G 0.02741 0.01238 0 0.03978 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .65it/s] all 96 96 0.198 0.948 0.52 0.2 Epoch gpu_mem box obj cls total targets img_size 42 / 299 1 .2G 0.02531 0.01172 0 0.03704 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .23it/s] all 96 96 0.357 0.906 0.859 0.38 Epoch gpu_mem box obj cls total targets img_size 43 / 299 1 .2G 0.02955 0.01272 0 0.04226 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .97it/s] all 96 96 0.46 0.875 0.819 0.28 Epoch gpu_mem box obj cls total targets img_size 44 / 299 1 .2G 0.02432 0.01227 0 0.03658 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .91it/s] all 96 96 0.402 0.969 0.919 0.408 Epoch gpu_mem box obj cls total targets img_size 45 / 299 1 .2G 0.02833 0.01243 0 0.04075 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .76it/s] all 96 96 0.52 0.938 0.929 0.505 Epoch gpu_mem box obj cls total targets img_size 46 / 299 1 .2G 0.02618 0.01305 0 0.03923 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .65it/s] all 96 96 0.426 0.958 0.902 0.466 Epoch gpu_mem box obj cls total targets img_size 47 / 299 1 .2G 0.02414 0.01146 0 0.03559 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.38 0.938 0.875 0.403 Epoch gpu_mem box obj cls total targets img_size 48 / 299 1 .2G 0.02413 0.01139 0 0.03552 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .32it/s] all 96 96 0.419 0.99 0.936 0.433 Epoch gpu_mem box obj cls total targets img_size 49 / 299 1 .2G 0.02644 0.01167 0 0.0381 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .12it/s] all 96 96 0.541 0.979 0.951 0.5 Epoch gpu_mem box obj cls total targets img_size 50 / 299 1 .2G 0.02325 0.01164 0 0.03489 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .67it/s] all 96 96 0.479 0.979 0.95 0.455 Epoch gpu_mem box obj cls total targets img_size 51 / 299 1 .2G 0.02356 0.01087 0 0.03443 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .61it/s] all 96 96 0.104 0.787 0.176 0.0301 Epoch gpu_mem box obj cls total targets img_size 52 / 299 1 .2G 0.02424 0.01131 0 0.03555 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .75it/s] all 96 96 0.511 0.969 0.917 0.475 Epoch gpu_mem box obj cls total targets img_size 53 / 299 1 .2G 0.02284 0.01041 0 0.03325 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .54it/s] all 96 96 0.619 0.917 0.898 0.48 Epoch gpu_mem box obj cls total targets img_size 54 / 299 1 .2G 0.02482 0.01094 0 0.03576 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .91it/s] all 96 96 0.436 0.979 0.954 0.477 Epoch gpu_mem box obj cls total targets img_size 55 / 299 1 .2G 0.02529 0.01144 0 0.03674 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.471 0.969 0.937 0.438 Epoch gpu_mem box obj cls total targets img_size 56 / 299 1 .2G 0.02261 0.01112 0 0.03374 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.51 0.958 0.947 0.485 Epoch gpu_mem box obj cls total targets img_size 57 / 299 1 .2G 0.02217 0.01052 0 0.03269 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .30it/s] all 96 96 0.608 0.927 0.935 0.514 Epoch gpu_mem box obj cls total targets img_size 58 / 299 1 .2G 0.02256 0.009905 0 0.03247 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.6 0.938 0.949 0.376 Epoch gpu_mem box obj cls total targets img_size 59 / 299 1 .2G 0.02319 0.01074 0 0.03393 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .30it/s] all 96 96 0.381 0.958 0.887 0.451 Epoch gpu_mem box obj cls total targets img_size 60 / 299 1 .2G 0.02165 0.009682 0 0.03133 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .32it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .95it/s] all 96 96 0.619 0.938 0.941 0.586 Epoch gpu_mem box obj cls total targets img_size 61 / 299 1 .2G 0.02055 0.009749 0 0.0303 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .01it/s] all 96 96 0.576 0.979 0.964 0.586 Epoch gpu_mem box obj cls total targets img_size 62 / 299 1 .2G 0.02088 0.009596 0 0.03047 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .99it/s] all 96 96 0.518 0.917 0.882 0.466 Epoch gpu_mem box obj cls total targets img_size 63 / 299 1 .2G 0.02033 0.009053 0 0.02939 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .16it/s] all 96 96 0.638 0.927 0.935 0.617 Epoch gpu_mem box obj cls total targets img_size 64 / 299 1 .2G 0.02323 0.009523 0 0.03275 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.678 0.958 0.96 0.368 Epoch gpu_mem box obj cls total targets img_size 65 / 299 1 .2G 0.02362 0.009677 0 0.03329 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.647 0.948 0.938 0.462 Epoch gpu_mem box obj cls total targets img_size 66 / 299 1 .2G 0.02292 0.01002 0 0.03295 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .32it/s] all 96 96 0.549 0.99 0.978 0.562 Epoch gpu_mem box obj cls total targets img_size 67 / 299 1 .2G 0.02067 0.009439 0 0.03011 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.737 0.958 0.955 0.617 Epoch gpu_mem box obj cls total targets img_size 68 / 299 1 .2G 0.01958 0.009032 0 0.02861 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .00it/s] all 96 96 0.569 0.969 0.964 0.502 Epoch gpu_mem box obj cls total targets img_size 69 / 299 1 .2G 0.02229 0.00881 0 0.0311 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .17it/s] all 96 96 0.409 0.99 0.95 0.58 Epoch gpu_mem box obj cls total targets img_size 70 / 299 1 .2G 0.0205 0.008937 0 0.02943 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.703 0.99 0.979 0.635 Epoch gpu_mem box obj cls total targets img_size 71 / 299 1 .2G 0.02069 0.009455 0 0.03014 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.604 1 0.98 0.579 Epoch gpu_mem box obj cls total targets img_size 72 / 299 1 .2G 0.02012 0.008819 0 0.02894 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .10it/s] all 96 96 0.692 0.969 0.964 0.487 Epoch gpu_mem box obj cls total targets img_size 73 / 299 1 .2G 0.01862 0.008198 0 0.02682 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .60it/s] all 96 96 0.618 0.969 0.959 0.678 Epoch gpu_mem box obj cls total targets img_size 74 / 299 1 .2G 0.0203 0.008587 0 0.02889 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .70it/s] all 96 96 0.687 0.99 0.981 0.707 Epoch gpu_mem box obj cls total targets img_size 75 / 299 1 .2G 0.02066 0.009075 0 0.02973 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .13it/s] all 96 96 0.605 0.99 0.97 0.654 Epoch gpu_mem box obj cls total targets img_size 76 / 299 1 .2G 0.01956 0.008786 0 0.02834 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .72it/s] all 96 96 0.691 0.979 0.969 0.663 Epoch gpu_mem box obj cls total targets img_size 77 / 299 1 .2G 0.01933 0.00843 0 0.02776 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .76it/s] all 96 96 0.879 0.958 0.979 0.727 Epoch gpu_mem box obj cls total targets img_size 78 / 299 1 .2G 0.01819 0.008658 0 0.02685 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .76it/s] all 96 96 0.635 0.99 0.981 0.667 Epoch gpu_mem box obj cls total targets img_size 79 / 299 1 .2G 0.01905 0.008705 0 0.02775 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .79it/s] all 96 96 0.877 0.979 0.982 0.65 Epoch gpu_mem box obj cls total targets img_size 80 / 299 1 .2G 0.01921 0.008615 0 0.02782 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.461 0.969 0.962 0.644 Epoch gpu_mem box obj cls total targets img_size 81 / 299 1 .2G 0.01955 0.008665 0 0.02821 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .01it/s] all 96 96 0.597 0.969 0.941 0.564 Epoch gpu_mem box obj cls total targets img_size 82 / 299 1 .2G 0.01828 0.008428 0 0.0267 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .00it/s] all 96 96 0.732 0.99 0.984 0.723 Epoch gpu_mem box obj cls total targets img_size 83 / 299 1 .2G 0.01844 0.008229 0 0.02667 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .73it/s] all 96 96 0.734 0.99 0.984 0.639 Epoch gpu_mem box obj cls total targets img_size 84 / 299 1 .2G 0.01948 0.008649 0 0.02813 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .98it/s] all 96 96 0.708 0.99 0.972 0.62 Epoch gpu_mem box obj cls total targets img_size 85 / 299 1 .2G 0.01915 0.008188 0 0.02734 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .03it/s] all 96 96 0.778 0.958 0.971 0.61 Epoch gpu_mem box obj cls total targets img_size 86 / 299 1 .2G 0.01764 0.007764 0 0.02541 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .25it/s] all 96 96 0.714 1 0.981 0.744 Epoch gpu_mem box obj cls total targets img_size 87 / 299 1 .2G 0.01757 0.008307 0 0.02588 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .24it/s] all 96 96 0.741 0.969 0.961 0.616 Epoch gpu_mem box obj cls total targets img_size 88 / 299 1 .2G 0.01874 0.00821 0 0.02695 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .25it/s] all 96 96 0.756 0.958 0.968 0.688 Epoch gpu_mem box obj cls total targets img_size 89 / 299 1 .2G 0.01876 0.00848 0 0.02724 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .13it/s] all 96 96 0.713 0.969 0.97 0.579 Epoch gpu_mem box obj cls total targets img_size 90 / 299 1 .2G 0.01795 0.00789 0 0.02584 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .12it/s] all 96 96 0.894 0.969 0.979 0.737 Epoch gpu_mem box obj cls total targets img_size 91 / 299 1 .2G 0.01903 0.00827 0 0.0273 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.864 0.958 0.982 0.682 Epoch gpu_mem box obj cls total targets img_size 92 / 299 1 .2G 0.01712 0.00807 0 0.02519 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.834 0.979 0.98 0.749 Epoch gpu_mem box obj cls total targets img_size 93 / 299 1 .2G 0.01624 0.007951 0 0.02419 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.921 0.958 0.976 0.73 Epoch gpu_mem box obj cls total targets img_size 94 / 299 1 .2G 0.01629 0.007858 0 0.02415 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .91it/s] all 96 96 0.863 0.979 0.981 0.743 Epoch gpu_mem box obj cls total targets img_size 95 / 299 1 .2G 0.01636 0.007338 0 0.0237 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .21it/s] all 96 96 0.938 0.945 0.976 0.783 Epoch gpu_mem box obj cls total targets img_size 96 / 299 1 .2G 0.01701 0.007871 0 0.02488 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .13it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .53it/s] all 96 96 0.892 0.927 0.967 0.744 Epoch gpu_mem box obj cls total targets img_size 97 / 299 1 .2G 0.01772 0.007834 0 0.02555 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .58it/s] all 96 96 0.856 0.969 0.974 0.734 Epoch gpu_mem box obj cls total targets img_size 98 / 299 1 .2G 0.01825 0.00794 0 0.02619 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.67 0.99 0.985 0.553 Epoch gpu_mem box obj cls total targets img_size 99 / 299 1 .2G 0.01759 0.007708 0 0.0253 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.939 0.948 0.98 0.734 Epoch gpu_mem box obj cls total targets img_size 100 / 299 1 .2G 0.01626 0.007702 0 0.02396 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .59it/s] all 96 96 0.884 0.938 0.971 0.776 Epoch gpu_mem box obj cls total targets img_size 101 / 299 1 .2G 0.01592 0.007834 0 0.02375 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .03it/s] all 96 96 0.903 0.948 0.978 0.677 Epoch gpu_mem box obj cls total targets img_size 102 / 299 1 .2G 0.01775 0.007647 0 0.0254 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.812 0.906 0.963 0.658 Epoch gpu_mem box obj cls total targets img_size 103 / 299 1 .2G 0.01611 0.007175 0 0.02329 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .97it/s] all 96 96 0.825 0.99 0.98 0.773 Epoch gpu_mem box obj cls total targets img_size 104 / 299 1 .2G 0.01704 0.007591 0 0.02463 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .40it/s] all 96 96 0.868 0.969 0.983 0.684 Epoch gpu_mem box obj cls total targets img_size 105 / 299 1 .2G 0.01559 0.007233 0 0.02282 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .85it/s] all 96 96 0.861 0.969 0.986 0.791 Epoch gpu_mem box obj cls total targets img_size 106 / 299 1 .2G 0.01514 0.007598 0 0.02273 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .90it/s] all 96 96 0.936 0.914 0.98 0.801 Epoch gpu_mem box obj cls total targets img_size 107 / 299 1 .2G 0.01528 0.007701 0 0.02298 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.918 0.948 0.98 0.761 Epoch gpu_mem box obj cls total targets img_size 108 / 299 1 .2G 0.01694 0.007444 0 0.02438 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.78 0.979 0.978 0.607 Epoch gpu_mem box obj cls total targets img_size 109 / 299 1 .2G 0.01619 0.007571 0 0.02376 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .14it/s] all 96 96 0.76 0.99 0.99 0.713 Epoch gpu_mem box obj cls total targets img_size 110 / 299 1 .2G 0.01466 0.006957 0 0.02161 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .12it/s] all 96 96 0.9 0.979 0.988 0.742 Epoch gpu_mem box obj cls total targets img_size 111 / 299 1 .2G 0.01571 0.00712 0 0.02283 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .26it/s] all 96 96 0.919 0.945 0.975 0.735 Epoch gpu_mem box obj cls total targets img_size 112 / 299 1 .2G 0.01615 0.007701 0 0.02385 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.911 0.958 0.985 0.809 Epoch gpu_mem box obj cls total targets img_size 113 / 299 1 .2G 0.01614 0.007048 0 0.02318 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .62it/s] all 96 96 0.893 0.99 0.987 0.674 Epoch gpu_mem box obj cls total targets img_size 114 / 299 1 .2G 0.01717 0.007449 0 0.02462 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .97it/s] all 96 96 0.791 0.99 0.989 0.698 Epoch gpu_mem box obj cls total targets img_size 115 / 299 1 .2G 0.01457 0.006931 0 0.0215 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .88it/s] all 96 96 0.827 1 0.989 0.75 Epoch gpu_mem box obj cls total targets img_size 116 / 299 1 .2G 0.01423 0.006883 0 0.02111 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .74it/s] all 96 96 0.923 0.979 0.99 0.807 Epoch gpu_mem box obj cls total targets img_size 117 / 299 1 .2G 0.01467 0.007047 0 0.02172 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.895 0.979 0.988 0.816 Epoch gpu_mem box obj cls total targets img_size 118 / 299 1 .2G 0.01483 0.006954 0 0.02178 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.865 0.99 0.987 0.71 Epoch gpu_mem box obj cls total targets img_size 119 / 299 1 .2G 0.01557 0.007306 0 0.02287 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.939 0.979 0.983 0.728 Epoch gpu_mem box obj cls total targets img_size 120 / 299 1 .2G 0.0135 0.006854 0 0.02035 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .15it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .60it/s] all 96 96 0.973 0.979 0.987 0.739 Epoch gpu_mem box obj cls total targets img_size 121 / 299 1 .2G 0.01601 0.006948 0 0.02295 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .88it/s] all 96 96 0.728 0.979 0.979 0.747 Epoch gpu_mem box obj cls total targets img_size 122 / 299 1 .2G 0.01552 0.007063 0 0.02258 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .26it/s] all 96 96 0.762 0.979 0.981 0.732 Epoch gpu_mem box obj cls total targets img_size 123 / 299 1 .2G 0.01616 0.007451 0 0.02361 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .84it/s] all 96 96 0.885 0.979 0.987 0.737 Epoch gpu_mem box obj cls total targets img_size 124 / 299 1 .2G 0.01423 0.006533 0 0.02076 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .71it/s] all 96 96 0.922 0.958 0.987 0.815 Epoch gpu_mem box obj cls total targets img_size 125 / 299 1 .2G 0.01394 0.007191 0 0.02113 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .90it/s] all 96 96 0.895 0.976 0.984 0.63 Epoch gpu_mem box obj cls total targets img_size 126 / 299 1 .2G 0.01405 0.006541 0 0.02059 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .74it/s] all 96 96 0.91 0.979 0.985 0.726 Epoch gpu_mem box obj cls total targets img_size 127 / 299 1 .2G 0.01345 0.006447 0 0.01989 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .68it/s] all 96 96 0.873 0.99 0.99 0.764 Epoch gpu_mem box obj cls total targets img_size 128 / 299 1 .2G 0.01505 0.006823 0 0.02187 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.873 1 0.994 0.706 Epoch gpu_mem box obj cls total targets img_size 129 / 299 1 .2G 0.01533 0.006913 0 0.02224 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .00it/s] all 96 96 0.979 0.982 0.994 0.779 Epoch gpu_mem box obj cls total targets img_size 130 / 299 1 .2G 0.01462 0.007201 0 0.02182 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .58it/s] all 96 96 0.928 1 0.994 0.816 Epoch gpu_mem box obj cls total targets img_size 131 / 299 1 .2G 0.01424 0.006945 0 0.02119 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.95 1 0.995 0.775 Epoch gpu_mem box obj cls total targets img_size 132 / 299 1 .2G 0.01535 0.006876 0 0.02223 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .97it/s] all 96 96 0.96 0.994 0.994 0.805 Epoch gpu_mem box obj cls total targets img_size 133 / 299 1 .2G 0.01345 0.006886 0 0.02033 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .24it/s] all 96 96 0.909 0.979 0.992 0.797 Epoch gpu_mem box obj cls total targets img_size 134 / 299 1 .2G 0.01505 0.006856 0 0.0219 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .95it/s] all 96 96 0.913 0.989 0.989 0.754 Epoch gpu_mem box obj cls total targets img_size 135 / 299 1 .2G 0.01443 0.006971 0 0.0214 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .75it/s] all 96 96 0.929 0.95 0.985 0.805 Epoch gpu_mem box obj cls total targets img_size 136 / 299 1 .2G 0.0135 0.006413 0 0.01992 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .13it/s] all 96 96 0.928 0.969 0.984 0.783 Epoch gpu_mem box obj cls total targets img_size 137 / 299 1 .2G 0.01309 0.006311 0 0.0194 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.989 0.945 0.976 0.768 Epoch gpu_mem box obj cls total targets img_size 138 / 299 1 .2G 0.01433 0.006835 0 0.02116 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.93 0.975 0.988 0.778 Epoch gpu_mem box obj cls total targets img_size 139 / 299 1 .2G 0.01323 0.006643 0 0.01987 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .80it/s] all 96 96 0.933 0.958 0.987 0.783 Epoch gpu_mem box obj cls total targets img_size 140 / 299 1 .2G 0.01447 0.006539 0 0.02101 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .03it/s] all 96 96 0.945 0.958 0.983 0.827 Epoch gpu_mem box obj cls total targets img_size 141 / 299 1 .2G 0.01374 0.006622 0 0.02036 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .67it/s] all 96 96 0.886 0.979 0.988 0.761 Epoch gpu_mem box obj cls total targets img_size 142 / 299 1 .2G 0.01341 0.006438 0 0.01985 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.923 0.996 0.992 0.822 Epoch gpu_mem box obj cls total targets img_size 143 / 299 1 .2G 0.01307 0.006277 0 0.01935 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.969 0.979 0.994 0.733 Epoch gpu_mem box obj cls total targets img_size 144 / 299 1 .2G 0.01268 0.006162 0 0.01885 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .75it/s] all 96 96 0.978 0.979 0.994 0.804 Epoch gpu_mem box obj cls total targets img_size 145 / 299 1 .2G 0.0132 0.006276 0 0.01947 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .01it/s] all 96 96 0.889 0.969 0.986 0.783 Epoch gpu_mem box obj cls total targets img_size 146 / 299 1 .2G 0.01241 0.005893 0 0.01831 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.925 0.979 0.992 0.774 Epoch gpu_mem box obj cls total targets img_size 147 / 299 1 .2G 0.01408 0.006458 0 0.02053 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .63it/s] all 96 96 0.948 0.949 0.987 0.813 Epoch gpu_mem box obj cls total targets img_size 148 / 299 1 .2G 0.01309 0.006292 0 0.01938 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .17it/s] all 96 96 0.898 1 0.99 0.79 Epoch gpu_mem box obj cls total targets img_size 149 / 299 1 .2G 0.01306 0.006516 0 0.01958 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .99it/s] all 96 96 0.942 1 0.994 0.831 Epoch gpu_mem box obj cls total targets img_size 150 / 299 1 .2G 0.01296 0.006449 0 0.01941 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .02it/s] all 96 96 0.907 0.99 0.994 0.83 Epoch gpu_mem box obj cls total targets img_size 151 / 299 1 .2G 0.01299 0.006304 0 0.01929 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.905 0.99 0.993 0.766 Epoch gpu_mem box obj cls total targets img_size 152 / 299 1 .2G 0.01313 0.00627 0 0.0194 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.938 0.938 0.986 0.823 Epoch gpu_mem box obj cls total targets img_size 153 / 299 1 .2G 0.01323 0.006008 0 0.01924 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.945 0.969 0.979 0.724 Epoch gpu_mem box obj cls total targets img_size 154 / 299 1 .2G 0.01295 0.006405 0 0.01935 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .00it/s] all 96 96 0.85 0.99 0.989 0.801 Epoch gpu_mem box obj cls total targets img_size 155 / 299 1 .2G 0.01332 0.006339 0 0.01966 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .01it/s] all 96 96 0.946 0.979 0.989 0.836 Epoch gpu_mem box obj cls total targets img_size 156 / 299 1 .2G 0.01215 0.005842 0 0.01799 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .75it/s] all 96 96 0.94 0.969 0.993 0.839 Epoch gpu_mem box obj cls total targets img_size 157 / 299 1 .2G 0.01154 0.005992 0 0.01753 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .27it/s] all 96 96 0.981 0.948 0.988 0.801 Epoch gpu_mem box obj cls total targets img_size 158 / 299 1 .2G 0.01212 0.006081 0 0.0182 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .99it/s] all 96 96 0.931 0.958 0.989 0.827 Epoch gpu_mem box obj cls total targets img_size 159 / 299 1 .2G 0.01245 0.00629 0 0.01874 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .12it/s] all 96 96 0.935 0.969 0.99 0.817 Epoch gpu_mem box obj cls total targets img_size 160 / 299 1 .2G 0.01232 0.005734 0 0.01806 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.949 0.963 0.989 0.829 Epoch gpu_mem box obj cls total targets img_size 161 / 299 1 .2G 0.01167 0.006005 0 0.01767 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .02it/s] all 96 96 0.94 0.969 0.991 0.843 Epoch gpu_mem box obj cls total targets img_size 162 / 299 1 .2G 0.01298 0.006109 0 0.01909 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .99it/s] all 96 96 0.929 0.979 0.992 0.832 Epoch gpu_mem box obj cls total targets img_size 163 / 299 1 .2G 0.01132 0.005792 0 0.01712 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .66it/s] all 96 96 0.917 0.99 0.992 0.843 Epoch gpu_mem box obj cls total targets img_size 164 / 299 1 .2G 0.01203 0.006413 0 0.01844 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .01it/s] all 96 96 0.913 0.979 0.992 0.827 Epoch gpu_mem box obj cls total targets img_size 165 / 299 1 .2G 0.01286 0.006339 0 0.0192 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .95it/s] all 96 96 0.863 0.99 0.992 0.811 Epoch gpu_mem box obj cls total targets img_size 166 / 299 1 .2G 0.01248 0.006131 0 0.01861 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .89it/s] all 96 96 0.928 0.99 0.994 0.841 Epoch gpu_mem box obj cls total targets img_size 167 / 299 1 .2G 0.01217 0.006208 0 0.01838 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .58it/s] all 96 96 0.972 0.979 0.993 0.816 Epoch gpu_mem box obj cls total targets img_size 168 / 299 1 .2G 0.01218 0.006247 0 0.01843 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .02it/s] all 96 96 0.958 0.969 0.989 0.835 Epoch gpu_mem box obj cls total targets img_size 169 / 299 1 .2G 0.01105 0.00604 0 0.01709 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .80it/s] all 96 96 0.961 0.958 0.991 0.811 Epoch gpu_mem box obj cls total targets img_size 170 / 299 1 .2G 0.01175 0.006039 0 0.01779 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.978 0.979 0.994 0.82 Epoch gpu_mem box obj cls total targets img_size 171 / 299 1 .2G 0.01194 0.00626 0 0.0182 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .39it/s] all 96 96 0.905 0.979 0.991 0.826 Epoch gpu_mem box obj cls total targets img_size 172 / 299 1 .2G 0.01108 0.005729 0 0.01681 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.979 0.99 0.994 0.831 Epoch gpu_mem box obj cls total targets img_size 173 / 299 1 .2G 0.01182 0.005788 0 0.01761 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .69it/s] all 96 96 0.959 0.985 0.994 0.854 Epoch gpu_mem box obj cls total targets img_size 174 / 299 1 .2G 0.01204 0.006269 0 0.0183 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .12it/s] all 96 96 0.989 0.978 0.994 0.845 Epoch gpu_mem box obj cls total targets img_size 175 / 299 1 .2G 0.01142 0.005735 0 0.01715 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .89it/s] all 96 96 0.959 0.985 0.994 0.85 Epoch gpu_mem box obj cls total targets img_size 176 / 299 1 .2G 0.01195 0.006013 0 0.01796 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .38it/s] all 96 96 0.947 0.979 0.992 0.825 Epoch gpu_mem box obj cls total targets img_size 177 / 299 1 .2G 0.01221 0.006114 0 0.01832 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .13it/s] all 96 96 0.895 0.979 0.992 0.838 Epoch gpu_mem box obj cls total targets img_size 178 / 299 1 .2G 0.01152 0.005974 0 0.01749 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .46it/s] all 96 96 0.931 0.979 0.992 0.81 Epoch gpu_mem box obj cls total targets img_size 179 / 299 1 .2G 0.01221 0.005903 0 0.01812 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .26it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .11it/s] all 96 96 0.888 0.99 0.993 0.804 Epoch gpu_mem box obj cls total targets img_size 180 / 299 1 .2G 0.01142 0.005693 0 0.01712 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .34it/s] all 96 96 0.942 0.979 0.993 0.851 Epoch gpu_mem box obj cls total targets img_size 181 / 299 1 .2G 0.01176 0.005893 0 0.01766 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .65it/s] all 96 96 0.927 0.99 0.993 0.83 Epoch gpu_mem box obj cls total targets img_size 182 / 299 1 .2G 0.0108 0.005689 0 0.01649 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .15it/s] all 96 96 0.93 1 0.996 0.835 Epoch gpu_mem box obj cls total targets img_size 183 / 299 1 .2G 0.01146 0.006109 0 0.01757 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .31it/s] all 96 96 0.918 1 0.995 0.837 Epoch gpu_mem box obj cls total targets img_size 184 / 299 1 .2G 0.0119 0.00614 0 0.01804 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .81it/s] all 96 96 0.978 1 0.995 0.835 Epoch gpu_mem box obj cls total targets img_size 185 / 299 1 .2G 0.0115 0.005516 0 0.01701 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .38it/s] all 96 96 0.954 1 0.995 0.821 Epoch gpu_mem box obj cls total targets img_size 186 / 299 1 .2G 0.01181 0.006088 0 0.01789 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .25it/s] all 96 96 0.936 1 0.995 0.828 Epoch gpu_mem box obj cls total targets img_size 187 / 299 1 .2G 0.0112 0.005516 0 0.01672 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.887 1 0.995 0.796 Epoch gpu_mem box obj cls total targets img_size 188 / 299 1 .2G 0.01146 0.005683 0 0.01714 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .82it/s] all 96 96 0.908 1 0.995 0.858 Epoch gpu_mem box obj cls total targets img_size 189 / 299 1 .2G 0.01197 0.005705 0 0.01767 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .09it/s] all 96 96 0.897 0.99 0.994 0.837 Epoch gpu_mem box obj cls total targets img_size 190 / 299 1 .2G 0.009891 0.00571 0 0.0156 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .91it/s] all 96 96 0.959 0.969 0.991 0.838 Epoch gpu_mem box obj cls total targets img_size 191 / 299 1 .2G 0.01041 0.005288 0 0.0157 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .84it/s] all 96 96 0.964 0.969 0.989 0.82 Epoch gpu_mem box obj cls total targets img_size 192 / 299 1 .2G 0.01086 0.005524 0 0.01639 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.97 0.969 0.991 0.83 Epoch gpu_mem box obj cls total targets img_size 193 / 299 1 .2G 0.01012 0.005272 0 0.01539 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .99it/s] all 96 96 0.968 0.958 0.989 0.824 Epoch gpu_mem box obj cls total targets img_size 194 / 299 1 .2G 0.01135 0.005924 0 0.01727 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .14it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .58it/s] all 96 96 0.95 0.979 0.992 0.823 Epoch gpu_mem box obj cls total targets img_size 195 / 299 1 .2G 0.01121 0.005728 0 0.01694 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .81it/s] all 96 96 0.931 0.979 0.993 0.824 Epoch gpu_mem box obj cls total targets img_size 196 / 299 1 .2G 0.01066 0.005572 0 0.01623 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .77it/s] all 96 96 0.909 1 0.993 0.818 Epoch gpu_mem box obj cls total targets img_size 197 / 299 1 .2G 0.01102 0.005818 0 0.01683 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .30it/s] all 96 96 0.894 0.99 0.99 0.845 Epoch gpu_mem box obj cls total targets img_size 198 / 299 1 .2G 0.01095 0.005782 0 0.01673 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.903 0.974 0.99 0.83 Epoch gpu_mem box obj cls total targets img_size 199 / 299 1 .2G 0.009963 0.005185 0 0.01515 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.904 0.979 0.992 0.818 Epoch gpu_mem box obj cls total targets img_size 200 / 299 1 .2G 0.0111 0.005914 0 0.01702 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .21it/s] all 96 96 0.921 0.972 0.991 0.84 Epoch gpu_mem box obj cls total targets img_size 201 / 299 1 .2G 0.01017 0.005411 0 0.01558 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .69it/s] all 96 96 0.969 0.964 0.988 0.83 Epoch gpu_mem box obj cls total targets img_size 202 / 299 1 .2G 0.01016 0.005515 0 0.01567 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .08it/s] all 96 96 0.962 0.969 0.989 0.841 Epoch gpu_mem box obj cls total targets img_size 203 / 299 1 .2G 0.01095 0.005417 0 0.01637 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .24it/s] all 96 96 0.96 0.979 0.994 0.848 Epoch gpu_mem box obj cls total targets img_size 204 / 299 1 .2G 0.01091 0.005613 0 0.01653 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .19it/s] all 96 96 0.913 0.979 0.993 0.843 Epoch gpu_mem box obj cls total targets img_size 205 / 299 1 .2G 0.01033 0.005182 0 0.01551 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .98it/s] all 96 96 0.919 0.979 0.992 0.866 Epoch gpu_mem box obj cls total targets img_size 206 / 299 1 .2G 0.01063 0.005329 0 0.01596 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.866 0.969 0.989 0.846 Epoch gpu_mem box obj cls total targets img_size 207 / 299 1 .2G 0.01069 0.005352 0 0.01604 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .66it/s] all 96 96 0.952 0.969 0.987 0.854 Epoch gpu_mem box obj cls total targets img_size 208 / 299 1 .2G 0.01017 0.005239 0 0.0154 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .21it/s] all 96 96 1 0.978 0.989 0.849 Epoch gpu_mem box obj cls total targets img_size 209 / 299 1 .2G 0.01077 0.005521 0 0.01629 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .26it/s] all 96 96 0.944 0.99 0.994 0.827 Epoch gpu_mem box obj cls total targets img_size 210 / 299 1 .2G 0.009836 0.005041 0 0.01488 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.931 0.99 0.994 0.86 Epoch gpu_mem box obj cls total targets img_size 211 / 299 1 .2G 0.0107 0.005409 0 0.01611 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.997 0.979 0.991 0.845 Epoch gpu_mem box obj cls total targets img_size 212 / 299 1 .2G 0.009553 0.005395 0 0.01495 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .21it/s] all 96 96 0.983 0.969 0.988 0.855 Epoch gpu_mem box obj cls total targets img_size 213 / 299 1 .2G 0.009885 0.005214 0 0.0151 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .41it/s] all 96 96 0.944 0.979 0.991 0.858 Epoch gpu_mem box obj cls total targets img_size 214 / 299 1 .2G 0.01013 0.00547 0 0.0156 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.95 0.979 0.994 0.865 Epoch gpu_mem box obj cls total targets img_size 215 / 299 1 .2G 0.01034 0.005154 0 0.01549 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.936 0.979 0.993 0.871 Epoch gpu_mem box obj cls total targets img_size 216 / 299 1 .2G 0.01012 0.005236 0 0.01535 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .51it/s] all 96 96 0.938 0.99 0.993 0.871 Epoch gpu_mem box obj cls total targets img_size 217 / 299 1 .2G 0.009898 0.005211 0 0.01511 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.928 0.979 0.991 0.837 Epoch gpu_mem box obj cls total targets img_size 218 / 299 1 .2G 0.01009 0.005536 0 0.01563 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .97it/s] all 96 96 0.962 0.969 0.989 0.854 Epoch gpu_mem box obj cls total targets img_size 219 / 299 1 .2G 0.01021 0.005699 0 0.01591 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.976 0.969 0.984 0.834 Epoch gpu_mem box obj cls total targets img_size 220 / 299 1 .2G 0.01011 0.005346 0 0.01545 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.985 0.969 0.987 0.819 Epoch gpu_mem box obj cls total targets img_size 221 / 299 1 .2G 0.00977 0.004936 0 0.01471 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .03it/s] all 96 96 0.963 0.979 0.988 0.852 Epoch gpu_mem box obj cls total targets img_size 222 / 299 1 .2G 0.009549 0.005101 0 0.01465 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .95it/s] all 96 96 0.969 0.975 0.987 0.841 Epoch gpu_mem box obj cls total targets img_size 223 / 299 1 .2G 0.009845 0.005341 0 0.01519 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .21it/s] all 96 96 0.967 0.969 0.991 0.846 Epoch gpu_mem box obj cls total targets img_size 224 / 299 1 .2G 0.0104 0.005459 0 0.01586 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .68it/s] all 96 96 0.976 0.979 0.994 0.865 Epoch gpu_mem box obj cls total targets img_size 225 / 299 1 .2G 0.009298 0.004789 0 0.01409 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.947 0.99 0.994 0.862 Epoch gpu_mem box obj cls total targets img_size 226 / 299 1 .2G 0.009866 0.005016 0 0.01488 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.937 0.99 0.995 0.867 Epoch gpu_mem box obj cls total targets img_size 227 / 299 1 .2G 0.00921 0.004961 0 0.01417 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.945 1 0.995 0.855 Epoch gpu_mem box obj cls total targets img_size 228 / 299 1 .2G 0.009477 0.004815 0 0.01429 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .84it/s] all 96 96 0.952 0.99 0.995 0.842 Epoch gpu_mem box obj cls total targets img_size 229 / 299 1 .2G 0.009913 0.005367 0 0.01528 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .20it/s] all 96 96 0.938 1 0.996 0.875 Epoch gpu_mem box obj cls total targets img_size 230 / 299 1 .2G 0.009452 0.004923 0 0.01437 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .41it/s] all 96 96 0.949 1 0.996 0.868 Epoch gpu_mem box obj cls total targets img_size 231 / 299 1 .2G 0.009123 0.005047 0 0.01417 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .86it/s] all 96 96 0.953 0.99 0.995 0.857 Epoch gpu_mem box obj cls total targets img_size 232 / 299 1 .2G 0.009895 0.005113 0 0.01501 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .32it/s] all 96 96 0.969 0.982 0.994 0.851 Epoch gpu_mem box obj cls total targets img_size 233 / 299 1 .2G 0.009565 0.004804 0 0.01437 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.947 0.99 0.995 0.843 Epoch gpu_mem box obj cls total targets img_size 234 / 299 1 .2G 0.009772 0.004809 0 0.01458 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .46it/s] all 96 96 0.951 0.99 0.994 0.871 Epoch gpu_mem box obj cls total targets img_size 235 / 299 1 .2G 0.00935 0.005471 0 0.01482 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .31it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .84it/s] all 96 96 0.94 0.99 0.994 0.858 Epoch gpu_mem box obj cls total targets img_size 236 / 299 1 .2G 0.009628 0.005195 0 0.01482 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .16it/s] all 96 96 0.909 0.99 0.994 0.858 Epoch gpu_mem box obj cls total targets img_size 237 / 299 1 .2G 0.008808 0.004667 0 0.01348 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .61it/s] all 96 96 0.948 0.99 0.994 0.858 Epoch gpu_mem box obj cls total targets img_size 238 / 299 1 .2G 0.009948 0.005301 0 0.01525 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .36it/s] all 96 96 0.967 0.99 0.995 0.855 Epoch gpu_mem box obj cls total targets img_size 239 / 299 1 .2G 0.008884 0.004621 0 0.01351 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .66it/s] all 96 96 0.986 0.99 0.995 0.857 Epoch gpu_mem box obj cls total targets img_size 240 / 299 1 .2G 0.009328 0.004899 0 0.01423 0 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .12it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .85it/s] all 96 96 0.983 0.99 0.995 0.858 Epoch gpu_mem box obj cls total targets img_size 241 / 299 1 .2G 0.009201 0.005305 0 0.01451 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 43 < 00 : 00 , 4 .04it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .52it/s] all 96 96 0.94 0.982 0.994 0.848 Epoch gpu_mem box obj cls total targets img_size 242 / 299 1 .2G 0.009563 0.005047 0 0.01461 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .62it/s] all 96 96 0.921 0.99 0.994 0.857 Epoch gpu_mem box obj cls total targets img_size 243 / 299 1 .2G 0.009758 0.00503 0 0.01479 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .76it/s] all 96 96 0.953 0.979 0.994 0.856 Epoch gpu_mem box obj cls total targets img_size 244 / 299 1 .2G 0.009432 0.005162 0 0.01459 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .21it/s] all 96 96 0.973 0.979 0.994 0.854 Epoch gpu_mem box obj cls total targets img_size 245 / 299 1 .2G 0.008841 0.004853 0 0.01369 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.99 0.979 0.994 0.865 Epoch gpu_mem box obj cls total targets img_size 246 / 299 1 .2G 0.009158 0.005 0 0.01416 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.951 0.979 0.993 0.862 Epoch gpu_mem box obj cls total targets img_size 247 / 299 1 .2G 0.008524 0.004814 0 0.01334 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .21it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .02it/s] all 96 96 0.932 0.995 0.995 0.863 Epoch gpu_mem box obj cls total targets img_size 248 / 299 1 .2G 0.008815 0.004629 0 0.01344 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .22it/s] all 96 96 0.971 0.99 0.996 0.876 Epoch gpu_mem box obj cls total targets img_size 249 / 299 1 .2G 0.009033 0.004924 0 0.01396 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .05it/s] all 96 96 0.99 0.969 0.995 0.867 Epoch gpu_mem box obj cls total targets img_size 250 / 299 1 .2G 0.008794 0.004829 0 0.01362 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .17it/s] all 96 96 0.998 0.979 0.991 0.877 Epoch gpu_mem box obj cls total targets img_size 251 / 299 1 .2G 0.008603 0.004721 0 0.01332 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .05it/s] all 96 96 0.982 0.979 0.991 0.873 Epoch gpu_mem box obj cls total targets img_size 252 / 299 1 .2G 0.00889 0.005019 0 0.01391 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .95it/s] all 96 96 0.99 0.979 0.99 0.853 Epoch gpu_mem box obj cls total targets img_size 253 / 299 1 .2G 0.008779 0.004774 0 0.01355 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 43 < 00 : 00 , 4 .06it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .34it/s] all 96 96 0.974 0.979 0.994 0.874 Epoch gpu_mem box obj cls total targets img_size 254 / 299 1 .2G 0.009682 0.00488 0 0.01456 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 43 < 00 : 00 , 4 .05it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .76it/s] all 96 96 0.954 0.979 0.992 0.869 Epoch gpu_mem box obj cls total targets img_size 255 / 299 1 .2G 0.00834 0.004522 0 0.01286 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 43 < 00 : 00 , 4 .02it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .05it/s] all 96 96 0.957 0.969 0.992 0.872 Epoch gpu_mem box obj cls total targets img_size 256 / 299 1 .2G 0.008973 0.004622 0 0.01359 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 45 < 00 : 00 , 3 .88it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 8 .32it/s] all 96 96 0.985 0.969 0.992 0.853 Epoch gpu_mem box obj cls total targets img_size 257 / 299 1 .2G 0.009565 0.005248 0 0.01481 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .12it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .85it/s] all 96 96 0.989 0.969 0.99 0.85 Epoch gpu_mem box obj cls total targets img_size 258 / 299 1 .2G 0.00894 0.005029 0 0.01397 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .72it/s] all 96 96 0.992 0.969 0.99 0.83 Epoch gpu_mem box obj cls total targets img_size 259 / 299 1 .2G 0.009122 0.005017 0 0.01414 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .25it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .63it/s] all 96 96 0.99 0.969 0.991 0.849 Epoch gpu_mem box obj cls total targets img_size 260 / 299 1 .2G 0.008823 0.004763 0 0.01359 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .21it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .42it/s] all 96 96 0.972 0.979 0.995 0.863 Epoch gpu_mem box obj cls total targets img_size 261 / 299 1 .2G 0.00933 0.005365 0 0.0147 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .83it/s] all 96 96 0.966 0.979 0.993 0.855 Epoch gpu_mem box obj cls total targets img_size 262 / 299 1 .2G 0.009009 0.005127 0 0.01414 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .22it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .74it/s] all 96 96 0.937 0.99 0.993 0.854 Epoch gpu_mem box obj cls total targets img_size 263 / 299 1 .2G 0.009214 0.004932 0 0.01415 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .20it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .81it/s] all 96 96 0.93 0.99 0.993 0.859 Epoch gpu_mem box obj cls total targets img_size 264 / 299 1 .2G 0.009393 0.004982 0 0.01438 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .21it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .04it/s] all 96 96 0.935 0.99 0.994 0.861 Epoch gpu_mem box obj cls total targets img_size 265 / 299 1 .2G 0.008248 0.004743 0 0.01299 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .22it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .79it/s] all 96 96 0.941 0.99 0.995 0.87 Epoch gpu_mem box obj cls total targets img_size 266 / 299 1 .2G 0.008602 0.004662 0 0.01326 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .49it/s] all 96 96 0.95 0.979 0.994 0.874 Epoch gpu_mem box obj cls total targets img_size 267 / 299 1 .2G 0.008899 0.004925 0 0.01382 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.944 0.979 0.99 0.862 Epoch gpu_mem box obj cls total targets img_size 268 / 299 1 .2G 0.009022 0.004796 0 0.01382 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .14it/s] all 96 96 0.984 0.979 0.986 0.841 Epoch gpu_mem box obj cls total targets img_size 269 / 299 1 .2G 0.009026 0.004712 0 0.01374 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .23it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .23it/s] all 96 96 0.994 0.979 0.985 0.853 Epoch gpu_mem box obj cls total targets img_size 270 / 299 1 .2G 0.008584 0.004905 0 0.01349 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .21it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .59it/s] all 96 96 0.993 0.969 0.987 0.852 Epoch gpu_mem box obj cls total targets img_size 271 / 299 1 .2G 0.009 0.004933 0 0.01393 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .22it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .88it/s] all 96 96 0.971 0.969 0.988 0.87 Epoch gpu_mem box obj cls total targets img_size 272 / 299 1 .2G 0.008799 0.004721 0 0.01352 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 42 < 00 : 00 , 4 .13it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .32it/s] all 96 96 0.952 0.99 0.994 0.868 Epoch gpu_mem box obj cls total targets img_size 273 / 299 1 .2G 0.008476 0.005019 0 0.01349 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .18it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .66it/s] all 96 96 0.976 0.99 0.995 0.867 Epoch gpu_mem box obj cls total targets img_size 274 / 299 1 .2G 0.007864 0.004387 0 0.01225 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.963 1 0.996 0.86 Epoch gpu_mem box obj cls total targets img_size 275 / 299 1 .2G 0.008831 0.004906 0 0.01374 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .22it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .35it/s] all 96 96 0.952 1 0.996 0.851 Epoch gpu_mem box obj cls total targets img_size 276 / 299 1 .2G 0.008238 0.004523 0 0.01276 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 48 < 00 : 00 , 3 .62it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 9 .12it/s] all 96 96 0.936 0.99 0.996 0.887 Epoch gpu_mem box obj cls total targets img_size 277 / 299 1 .2G 0.007956 0.004774 0 0.01273 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 50 < 00 : 00 , 3 .48it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 8 .69it/s] all 96 96 0.936 0.99 0.995 0.865 Epoch gpu_mem box obj cls total targets img_size 278 / 299 1 .2G 0.008689 0.004776 0 0.01347 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 52 < 00 : 00 , 3 .36it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 8 .02it/s] all 96 96 0.939 0.99 0.995 0.856 Epoch gpu_mem box obj cls total targets img_size 279 / 299 1 .2G 0.008709 0.004457 0 0.01317 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 57 < 00 : 00 , 3 .06it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 9 .68it/s] all 96 96 0.944 0.99 0.994 0.875 Epoch gpu_mem box obj cls total targets img_size 280 / 299 1 .2G 0.008606 0.004825 0 0.01343 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 45 < 00 : 00 , 3 .81it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 05 < 00 : 00 , 9 .20it/s] all 96 96 0.935 0.99 0.994 0.866 Epoch gpu_mem box obj cls total targets img_size 281 / 299 1 .2G 0.008796 0.004611 0 0.01341 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 45 < 00 : 00 , 3 .88it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.936 0.99 0.995 0.884 Epoch gpu_mem box obj cls total targets img_size 282 / 299 1 .2G 0.008118 0.00455 0 0.01267 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .94it/s] all 96 96 0.956 0.99 0.995 0.878 Epoch gpu_mem box obj cls total targets img_size 283 / 299 1 .2G 0.008533 0.004852 0 0.01338 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .27it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .06it/s] all 96 96 0.973 0.969 0.991 0.88 Epoch gpu_mem box obj cls total targets img_size 284 / 299 1 .2G 0.009105 0.00479 0 0.01389 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .87it/s] all 96 96 0.963 0.969 0.991 0.866 Epoch gpu_mem box obj cls total targets img_size 285 / 299 1 .2G 0.009689 0.004868 0 0.01456 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .18it/s] all 96 96 0.959 0.979 0.994 0.881 Epoch gpu_mem box obj cls total targets img_size 286 / 299 1 .2G 0.008465 0.004777 0 0.01324 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .96it/s] all 96 96 0.99 0.989 0.995 0.886 Epoch gpu_mem box obj cls total targets img_size 287 / 299 1 .2G 0.008783 0.004598 0 0.01338 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 41 < 00 : 00 , 4 .24it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.971 0.99 0.995 0.88 Epoch gpu_mem box obj cls total targets img_size 288 / 299 1 .2G 0.009136 0.004867 0 0.014 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .04it/s] all 96 96 0.99 0.99 0.996 0.878 Epoch gpu_mem box obj cls total targets img_size 289 / 299 1 .2G 0.008993 0.004969 0 0.01396 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.991 0.99 0.996 0.876 Epoch gpu_mem box obj cls total targets img_size 290 / 299 1 .2G 0.008596 0.00454 0 0.01314 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .25it/s] all 96 96 0.989 0.99 0.996 0.874 Epoch gpu_mem box obj cls total targets img_size 291 / 299 1 .2G 0.009079 0.00511 0 0.01419 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .98it/s] all 96 96 0.984 0.979 0.995 0.87 Epoch gpu_mem box obj cls total targets img_size 292 / 299 1 .2G 0.007899 0.00437 0 0.01227 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .74it/s] all 96 96 0.975 0.979 0.994 0.87 Epoch gpu_mem box obj cls total targets img_size 293 / 299 1 .2G 0.00847 0.004565 0 0.01303 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .93it/s] all 96 96 0.978 0.979 0.994 0.865 Epoch gpu_mem box obj cls total targets img_size 294 / 299 1 .2G 0.009008 0.004773 0 0.01378 4 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .76it/s] all 96 96 0.984 0.979 0.995 0.865 Epoch gpu_mem box obj cls total targets img_size 295 / 299 1 .2G 0.008114 0.004669 0 0.01278 1 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .28it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .66it/s] all 96 96 0.969 0.983 0.995 0.877 Epoch gpu_mem box obj cls total targets img_size 296 / 299 1 .2G 0.008296 0.004603 0 0.0129 3 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 11 .40it/s] all 96 96 0.974 0.979 0.995 0.868 Epoch gpu_mem box obj cls total targets img_size 297 / 299 1 .2G 0.008442 0.004489 0 0.01293 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .29it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .92it/s] all 96 96 0.967 0.979 0.994 0.879 Epoch gpu_mem box obj cls total targets img_size 298 / 299 1 .2G 0.008423 0.004596 0 0.01302 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .70it/s] all 96 96 0.971 0.979 0.992 0.871 Epoch gpu_mem box obj cls total targets img_size 299 / 299 1 .2G 0.008065 0.004469 0 0.01253 2 640 : 100 %|███████████████████████████████████████████████████████████████████| 175 / 175 [ 00 : 40 < 00 : 00 , 4 .30it/s] Class Images Targets P R mAP@. 5 mAP@. 5 :. 95 : 100 %|█████████████████████████████████████████████████████████| 48 / 48 [ 00 : 04 < 00 : 00 , 10 .33it/s] all 96 96 0.97 0.979 0.991 0.879 Optimizer stripped from runs\train\exp4\weights\last.pt, 42 .5MB Optimizer stripped from runs\train\exp4\weights\best.pt, 42 .5MB 300 epochs completed in 3.836 hours. (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901> (wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901> |
测试:
(wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901>
(wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901>python detect_2022050201.py --weights runs/train/exp4/weights/best.pt --source data/img --conf-thres 0.15 --iou-thres 0.25
Namespace(agnostic_nms=False, augment=False, classes=None, conf_thres=0.15, device='', exist_ok=False, img_size=640, iou_thres=0.25, name='exp', project='runs/detect', save_conf=False, save_txt=False, source='data/img', update=False, view_img=False, weights=['runs/train/exp4/weights/best.pt'])
Using torch 1.8.1+cu111 CUDA:0 (NVIDIA GeForce RTX 3080 Laptop GPU, 16383.5MB)
Fusing layers...
Model Summary: 308 layers, 21037638 parameters, 0 gradients, 50.3 GFLOPS
image 1/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\168.jpg: 640x640 1 boundarys, Done. (0.016s)
image 2/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\2.jpg: 640x640 1 boundarys, Done. (0.033s)
image 3/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\267.jpg: 640x640 1 boundarys, Done. (0.032s)
image 4/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\311.jpg: 640x640 1 boundarys, Done. (0.027s)
image 5/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\363.jpg: 640x640 1 boundarys, Done. (0.027s)
image 6/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\406.jpg: 640x640 1 boundarys, Done. (0.028s)
image 7/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\50.jpg: 640x640 1 boundarys, Done. (0.028s)
image 8/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\59.jpg: 640x640 Done. (0.026s)
image 9/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\63.jpg: 640x640 1 boundarys, Done. (0.027s)
image 10/10 H:\PytorchProject\yolov5_train_xinru_2023050901\data\img\86.jpg: 640x640 1 boundarys, Done. (0.028s)
Results saved to runs\detect\exp4
Done. (0.638s)
(wind_2021) H:\PytorchProject\yolov5_train_xinru_2023050901>
###########################
QQ 3087438119
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
2022-05-09 QBrush
2020-05-09 IfcSpatialElementType
2016-05-09 Java 接口中常量的思考