yolov5训练日志
yolov5训练日志
python train_20220613.py --batch-size 2 --epochs 220 --data ./data/myvoc.yaml --cfg ./models/yolov5m.yaml --workers 0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 | (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope>python train_20220613.py - - batch - size 2 - - epochs 220 - - 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=220, 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\\exp2 ', 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 = 3 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 32328 models.yolo.Detect [ 3 , [[ 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, 21064488 parameters, 21064488 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_2022061301\labels' for images and labels... 198 found, 0 missing, 0 empty, 0 corrupted: 100 % |██████████████████████████████████████████████| 198 / 198 [ 00 : 00 < 00 : 00 , 250.56it / s] New cache created: VOC_2022061301\labels.cache Scanning 'VOC_2022061301\labels.cache' for images and labels... 198 found, 0 missing, 0 empty, 0 corrupted: 100 % |█████████████████████████████████████████████████| 198 / 198 [ 00 : 00 <?, ?it / s] Scanning 'VOC_2022061301\labels' for images and labels... 35 found, 0 missing, 0 empty, 0 corrupted: 100 % |█████████████████████████████████████████████████| 35 / 35 [ 00 : 00 < 00 : 00 , 256.35it / s] New cache created: VOC_2022061301\labels.cache Scanning 'VOC_2022061301\labels.cache' for images and labels... 35 found, 0 missing, 0 empty, 0 corrupted: 100 % |████████████████████████████████████████████████████| 35 / 35 [ 00 : 00 <?, ?it / s]Plotting labels... Scanning 'VOC_2022061301\labels.cache' for images and labels... 35 found, 0 missing, 0 empty, 0 corrupted: 100 % |████████████████████████████████████████████████████| 35 / 35 [ 00 : 00 <?, ?it / s] Analyzing anchors... anchors / target = 5.42 , Best Possible Recall (BPR) = 1.0000 Image sizes 640 train, 640 test Using 0 dataloader workers Logging results to runs\train\exp2 Starting training for 220 epochs... Epoch gpu_mem box obj cls total targets img_size 0 / 219 1.17G 0.1094 0.03392 0.03848 0.1818 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 46 < 00 : 00 , 2.15it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 07 < 00 : 00 , 2.37it / s] all 35 64 0 0 0.000109 1.52e - 05 Epoch gpu_mem box obj cls total targets img_size 1 / 219 1.15G 0.0991 0.03716 0.03634 0.1726 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.73it / s] all 35 64 0.00076 0.0123 0.000238 4.92e - 05 Epoch gpu_mem box obj cls total targets img_size 2 / 219 1.15G 0.09284 0.03903 0.03589 0.1678 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.33it / s] all 35 64 0.00088 0.037 0.000351 7.06e - 05 Epoch gpu_mem box obj cls total targets img_size 3 / 219 1.15G 0.09033 0.03815 0.03435 0.1628 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.87it / s] all 35 64 0 0 0.000189 4.57e - 05 Epoch gpu_mem box obj cls total targets img_size 4 / 219 1.15G 0.08871 0.0427 0.0342 0.1656 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.28it / s] all 35 64 0.00762 0.0667 0.00166 0.000647 Epoch gpu_mem box obj cls total targets img_size 5 / 219 1.15G 0.08683 0.04144 0.0325 0.1608 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.36it / s] all 35 64 0 0 0.000296 7.02e - 05 Epoch gpu_mem box obj cls total targets img_size 6 / 219 1.15G 0.08479 0.03689 0.0304 0.1521 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 38 < 00 : 00 , 2.54it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.14it / s] all 35 64 0 0 0.00155 0.000256 Epoch gpu_mem box obj cls total targets img_size 7 / 219 1.15G 0.08724 0.04025 0.02899 0.1565 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.11it / s] all 35 64 0.00674 0.0494 0.0109 0.00228 Epoch gpu_mem box obj cls total targets img_size 8 / 219 1.15G 0.087 0.0354 0.02739 0.1498 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.26it / s] all 35 64 0.00398 0.173 0.00725 0.00144 Epoch gpu_mem box obj cls total targets img_size 9 / 219 1.15G 0.08622 0.03311 0.02566 0.145 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.06it / s] all 35 64 0.00231 0.111 0.00876 0.00142 Epoch gpu_mem box obj cls total targets img_size 10 / 219 1.15G 0.0849 0.03389 0.02544 0.1442 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.54it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.66it / s] all 35 64 0.338 0.342 0.0611 0.016 Epoch gpu_mem box obj cls total targets img_size 11 / 219 1.15G 0.08449 0.03248 0.02383 0.1408 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.94it / s] all 35 64 0.00635 0.136 0.0165 0.00316 Epoch gpu_mem box obj cls total targets img_size 12 / 219 1.15G 0.08375 0.03381 0.02113 0.1387 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.21it / s] all 35 64 0.00782 0.0494 0.0126 0.00225 Epoch gpu_mem box obj cls total targets img_size 13 / 219 1.15G 0.08394 0.03431 0.01843 0.1367 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.84it / s] all 35 64 0.00469 0.272 0.0113 0.00189 Epoch gpu_mem box obj cls total targets img_size 14 / 219 1.15G 0.08139 0.03346 0.01942 0.1343 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.07it / s] all 35 64 0.341 0.367 0.189 0.0524 Epoch gpu_mem box obj cls total targets img_size 15 / 219 1.15G 0.07899 0.03061 0.0146 0.1242 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.92it / s] all 35 64 0.149 0.346 0.23 0.0513 Epoch gpu_mem box obj cls total targets img_size 16 / 219 1.15G 0.08047 0.03189 0.01368 0.126 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.90it / s] all 35 64 0.0054 0.309 0.0813 0.0225 Epoch gpu_mem box obj cls total targets img_size 17 / 219 1.15G 0.08151 0.03224 0.01399 0.1277 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.09it / s] all 35 64 0.0156 0.296 0.113 0.0314 Epoch gpu_mem box obj cls total targets img_size 18 / 219 1.15G 0.07746 0.02975 0.01386 0.1211 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.23it / s] all 35 64 0.0863 0.259 0.257 0.109 Epoch gpu_mem box obj cls total targets img_size 19 / 219 1.15G 0.07801 0.02896 0.01236 0.1193 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.03it / s] all 35 64 0.0431 0.259 0.203 0.0384 Epoch gpu_mem box obj cls total targets img_size 20 / 219 1.15G 0.07752 0.03125 0.01331 0.1221 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.37it / s] all 35 64 0.0405 0.346 0.293 0.115 Epoch gpu_mem box obj cls total targets img_size 21 / 219 1.15G 0.07674 0.03085 0.01488 0.1225 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.44it / s] all 35 64 0.0526 0.407 0.228 0.0779 Epoch gpu_mem box obj cls total targets img_size 22 / 219 1.15G 0.0694 0.03036 0.0119 0.1117 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.83it / s] all 35 64 0.0643 0.519 0.337 0.113 Epoch gpu_mem box obj cls total targets img_size 23 / 219 1.15G 0.07416 0.03235 0.01238 0.1189 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.88it / s] all 35 64 0.0473 0.457 0.154 0.028 Epoch gpu_mem box obj cls total targets img_size 24 / 219 1.15G 0.07116 0.03135 0.009146 0.1117 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.48it / s] all 35 64 0.098 0.506 0.364 0.114 Epoch gpu_mem box obj cls total targets img_size 25 / 219 1.15G 0.07023 0.02938 0.009615 0.1092 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.90it / s] all 35 64 0.114 0.405 0.295 0.105 Epoch gpu_mem box obj cls total targets img_size 26 / 219 1.15G 0.06785 0.02713 0.009161 0.1041 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.71it / s] all 35 64 0.0827 0.543 0.408 0.15 Epoch gpu_mem box obj cls total targets img_size 27 / 219 1.15G 0.06618 0.0281 0.009673 0.104 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.92it / s] all 35 64 0.0992 0.58 0.472 0.179 Epoch gpu_mem box obj cls total targets img_size 28 / 219 1.15G 0.06878 0.02688 0.009738 0.1054 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.94it / s] all 35 64 0.187 0.543 0.407 0.178 Epoch gpu_mem box obj cls total targets img_size 29 / 219 1.15G 0.06756 0.02793 0.008573 0.1041 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.73it / s] all 35 64 0.111 0.58 0.31 0.123 Epoch gpu_mem box obj cls total targets img_size 30 / 219 1.15G 0.06337 0.02529 0.007312 0.09598 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.51it / s] all 35 64 0.0504 0.605 0.205 0.103 Epoch gpu_mem box obj cls total targets img_size 31 / 219 1.15G 0.06675 0.02704 0.008426 0.1022 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.42it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.90it / s] all 35 64 0.14 0.568 0.405 0.124 Epoch gpu_mem box obj cls total targets img_size 32 / 219 1.15G 0.06974 0.02671 0.008875 0.1053 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.09it / s] all 35 64 0.156 0.58 0.47 0.2 Epoch gpu_mem box obj cls total targets img_size 33 / 219 1.15G 0.06112 0.02664 0.007349 0.09511 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.52it / s] all 35 64 0.185 0.407 0.339 0.0886 Epoch gpu_mem box obj cls total targets img_size 34 / 219 1.15G 0.0649 0.02572 0.006986 0.09761 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.80it / s] all 35 64 0.124 0.556 0.44 0.168 Epoch gpu_mem box obj cls total targets img_size 35 / 219 1.15G 0.06356 0.02544 0.007152 0.09615 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.52it / s] all 35 64 0.0927 0.63 0.481 0.148 Epoch gpu_mem box obj cls total targets img_size 36 / 219 1.15G 0.06043 0.02381 0.007302 0.09155 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.65it / s] all 35 64 0.151 0.63 0.548 0.23 Epoch gpu_mem box obj cls total targets img_size 37 / 219 1.15G 0.05847 0.02425 0.006121 0.08885 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.10it / s] all 35 64 0.227 0.601 0.52 0.227 Epoch gpu_mem box obj cls total targets img_size 38 / 219 1.15G 0.05761 0.02376 0.005887 0.08726 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.19it / s] all 35 64 0.183 0.672 0.461 0.169 Epoch gpu_mem box obj cls total targets img_size 39 / 219 1.15G 0.0575 0.02355 0.005916 0.08696 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.39it / s] all 35 64 0.272 0.614 0.533 0.268 Epoch gpu_mem box obj cls total targets img_size 40 / 219 1.15G 0.05734 0.02302 0.005249 0.08561 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.46it / s] all 35 64 0.137 0.717 0.497 0.212 Epoch gpu_mem box obj cls total targets img_size 41 / 219 1.15G 0.05821 0.02458 0.005643 0.08843 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.34it / s] all 35 64 0.235 0.696 0.558 0.281 Epoch gpu_mem box obj cls total targets img_size 42 / 219 1.15G 0.05691 0.02495 0.006033 0.08789 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.99it / s] all 35 64 0.179 0.573 0.28 0.0674 Epoch gpu_mem box obj cls total targets img_size 43 / 219 1.15G 0.06457 0.02402 0.00601 0.0946 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.65it / s] all 35 64 0.188 0.684 0.5 0.243 Epoch gpu_mem box obj cls total targets img_size 44 / 219 1.15G 0.05498 0.02291 0.004835 0.08272 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.46it / s] all 35 64 0.282 0.659 0.478 0.158 Epoch gpu_mem box obj cls total targets img_size 45 / 219 1.15G 0.05627 0.02416 0.004365 0.0848 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.49it / s] all 35 64 0.209 0.717 0.64 0.301 Epoch gpu_mem box obj cls total targets img_size 46 / 219 1.15G 0.05601 0.02421 0.005417 0.08564 11 640 : 38 % |██████████████████████████▍ 46 / 219 1.15G 0.05596 0.0243 0.005353 0.08561 11 640 : 38 % |██████████████████████████▍ 46 / 219 1.15G 0.05596 0.0243 0.005353 0.08561 11 640 : 39 % |███████████████████████████▏ 46 / 219 1.15G 0.05612 0.0241 0.005409 0.08563 4 640 : 39 % |███████████████████████████▏ 46 / 219 1.15G 0.05612 0.0241 0.005409 0.08563 4 640 : 40 % |███████████████████████████▉ 46 / 219 1.15G 0.05562 0.02378 0.005301 0.0847 4 640 : 40 % |███████████████████████████▉ 46 / 219 1.15G 0.05562 0.02378 0.005301 0.0847 4 640 : 41 % |████████████████████████████▌ 46 / 219 1.15G 0.05525 0.02351 0.005309 0.08406 4 640 : 41 % |████████████████████████████▌ 46 / 219 1.15G 0.05525 0.02351 0.005309 0.08406 4 640 : 42 % |█████████████████████████████▎ 46 / 219 1.15G 0.05496 0.02334 0.005215 0.08351 6 640 : 42 % |█████████████████████████████▎ 46 / 219 1.15G 0.05496 0.02334 0.005215 0.08351 6 640 : 43 % |█████████████████████████████▉ 46 / 219 1.15G 0.05506 0.02313 0.005157 0.08335 5 640 : 43 % |█████████████████████████████▉ 46 / 219 1.15G 0.05506 0.02313 0.005157 0.08335 5 640 : 44 % |██████████████████████████████▋ 46 / 219 1.15G 0.05507 0.023 0.0051 0.08317 5 640 : 44 % |██████████████████████████████▋ 46 / 219 1.15G 0.05507 0.023 0.0051 0.08317 5 640 : 45 % |███████████████████████████████▎ 46 / 219 1.15G 0.05505 0.02295 0.005053 0.08305 7 640 : 45 % |███████████████████████████████▎ 46 / 219 1.15G 0.05505 0.02295 0.005053 0.08305 7 640 : 46 % |████████████████████████████████ 46 / 219 1.15G 0.05448 0.02278 0.005 0.08226 4 640 : 46 % |████████████████████████████████ 46 / 219 1.15G 0.05448 0.02278 0.005 0.08226 4 640 : 47 % |████████████████████████████████▊ 46 / 219 1.15G 0.05449 0.02277 0.005007 0.08227 7 640 : 47 % |████████████████████████████████▊ 46 / 219 1.15G 0.05449 0.02277 0.005007 0.08227 7 640 : 48 % |█████████████████████████████████ 46 / 219 1.15G 0.05442 0.023 0.00498 0.08241 13 640 : 48 % |█████████████████████████████████ 46 46 / 219 1.15G 0.05687 0.02248 0.004506 0.08386 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.42it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.25it / s] all 35 64 0.183 0.705 0.427 0.134 Epoch gpu_mem box obj cls total targets img_size 47 / 219 1.15G 0.05975 0.02413 0.003977 0.08786 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.03it / s] all 35 64 0.251 0.763 0.547 0.273 Epoch gpu_mem box obj cls total targets img_size 48 / 219 1.15G 0.05305 0.02214 0.00467 0.07986 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 41 < 00 : 00 , 2.41it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.81it / s] all 35 64 0.266 0.751 0.596 0.353 Epoch gpu_mem box obj cls total targets img_size 49 / 219 1.15G 0.05378 0.02153 0.005001 0.08031 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.82it / s] all 35 64 0.264 0.689 0.508 0.2 Epoch gpu_mem box obj cls total targets img_size 50 / 219 1.15G 0.05633 0.0227 0.00601 0.08504 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.42it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.41it / s] all 35 64 0.206 0.684 0.665 0.291 Epoch gpu_mem box obj cls total targets img_size 51 / 219 1.15G 0.05184 0.02459 0.005307 0.08174 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.84it / s] all 35 64 0.186 0.763 0.618 0.267 Epoch gpu_mem box obj cls total targets img_size 52 / 219 1.15G 0.05349 0.02342 0.004796 0.0817 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 41 < 00 : 00 , 2.41it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.67it / s] all 35 64 0.0482 0.663 0.504 0.175 Epoch gpu_mem box obj cls total targets img_size 53 / 219 1.15G 0.05483 0.02262 0.006025 0.08348 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.05it / s] all 35 64 0.312 0.647 0.579 0.308 Epoch gpu_mem box obj cls total targets img_size 54 / 219 1.15G 0.054 0.02218 0.005639 0.08182 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.99it / s] all 35 64 0.264 0.672 0.586 0.257 Epoch gpu_mem box obj cls total targets img_size 55 / 219 1.15G 0.04987 0.02186 0.003958 0.07569 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.03it / s] all 35 64 0.274 0.705 0.596 0.338 Epoch gpu_mem box obj cls total targets img_size 56 / 219 1.15G 0.04707 0.02226 0.003619 0.07295 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.04it / s] all 35 64 0.199 0.717 0.585 0.302 Epoch gpu_mem box obj cls total targets img_size 57 / 219 1.15G 0.05116 0.02227 0.003967 0.0774 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.89it / s] all 35 64 0.216 0.772 0.499 0.225 Epoch gpu_mem box obj cls total targets img_size 58 / 219 1.15G 0.04782 0.01951 0.003566 0.0709 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.30it / s] all 35 64 0.285 0.784 0.653 0.289 Epoch gpu_mem box obj cls total targets img_size 59 / 219 1.15G 0.0472 0.0209 0.003685 0.07178 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.72it / s] all 35 64 0.225 0.83 0.743 0.37 Epoch gpu_mem box obj cls total targets img_size 60 / 219 1.15G 0.04887 0.02021 0.003683 0.07277 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.68it / s] all 35 64 0.193 0.772 0.625 0.277 Epoch gpu_mem box obj cls total targets img_size 61 / 219 1.15G 0.05221 0.02093 0.00289 0.07602 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.41it / s] all 35 64 0.412 0.759 0.599 0.257 Epoch gpu_mem box obj cls total targets img_size 62 / 219 1.15G 0.0503 0.02228 0.00346 0.07605 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.74it / s] all 35 64 0.197 0.775 0.641 0.321 Epoch gpu_mem box obj cls total targets img_size 63 / 219 1.15G 0.04529 0.02111 0.00331 0.06971 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.42it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.22it / s] all 35 64 0.405 0.763 0.667 0.368 Epoch gpu_mem box obj cls total targets img_size 64 / 219 1.15G 0.04531 0.02102 0.004058 0.07039 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.59it / s] all 35 64 0.211 0.763 0.624 0.307 Epoch gpu_mem box obj cls total targets img_size 65 / 219 1.15G 0.04368 0.02114 0.003767 0.06859 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.24it / s] all 35 64 0.231 0.775 0.638 0.315 Epoch gpu_mem box obj cls total targets img_size 66 / 219 1.15G 0.04297 0.01924 0.003512 0.06573 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.67it / s] all 35 64 0.289 0.672 0.631 0.382 Epoch gpu_mem box obj cls total targets img_size 67 / 219 1.15G 0.04204 0.01927 0.002787 0.06409 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.17it / s] all 35 64 0.192 0.842 0.706 0.366 Epoch gpu_mem box obj cls total targets img_size 68 / 219 1.15G 0.04248 0.02015 0.002486 0.06512 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.25it / s] all 35 64 0.235 0.775 0.66 0.355 Epoch gpu_mem box obj cls total targets img_size 69 / 219 1.15G 0.0465 0.021 0.003196 0.0707 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.90it / s] all 35 64 0.327 0.851 0.676 0.358 Epoch gpu_mem box obj cls total targets img_size 70 / 219 1.15G 0.04609 0.02004 0.002699 0.06883 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.28it / s] all 35 64 0.134 0.796 0.702 0.412 Epoch gpu_mem box obj cls total targets img_size 71 / 219 1.15G 0.04146 0.01969 0.002855 0.06401 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.30it / s] all 35 64 0.229 0.851 0.716 0.389 Epoch gpu_mem box obj cls total targets img_size 72 / 219 1.15G 0.04363 0.01956 0.002853 0.06604 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.27it / s] all 35 64 0.239 0.796 0.704 0.321 Epoch gpu_mem box obj cls total targets img_size 73 / 219 1.15G 0.04444 0.02102 0.003515 0.06897 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.21it / s] all 35 64 0.212 0.867 0.746 0.397 Epoch gpu_mem box obj cls total targets img_size 74 / 219 1.15G 0.04345 0.02228 0.003036 0.06876 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.33it / s] all 35 64 0.351 0.967 0.821 0.455 Epoch gpu_mem box obj cls total targets img_size 75 / 219 1.15G 0.04338 0.02014 0.002701 0.06623 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.01it / s] all 35 64 0.377 0.933 0.677 0.32 Epoch gpu_mem box obj cls total targets img_size 76 / 219 1.15G 0.04356 0.01882 0.002641 0.06502 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.18it / s] all 35 64 0.382 0.909 0.674 0.358 Epoch gpu_mem box obj cls total targets img_size 77 / 219 1.15G 0.03965 0.01836 0.00237 0.06039 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.08it / s] all 35 64 0.406 0.921 0.667 0.426 Epoch gpu_mem box obj cls total targets img_size 78 / 219 1.15G 0.03697 0.01806 0.002487 0.05752 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.99it / s] all 35 64 0.243 0.854 0.707 0.426 Epoch gpu_mem box obj cls total targets img_size 79 / 219 1.15G 0.03949 0.01759 0.002397 0.05947 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.26it / s] all 35 64 0.36 0.909 0.772 0.391 Epoch gpu_mem box obj cls total targets img_size 80 / 219 1.15G 0.04419 0.01944 0.002835 0.06646 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.55it / s] all 35 64 0.296 0.921 0.818 0.425 Epoch gpu_mem box obj cls total targets img_size 81 / 219 1.15G 0.04117 0.01846 0.002486 0.06212 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.03it / s] all 35 64 0.308 0.888 0.763 0.407 Epoch gpu_mem box obj cls total targets img_size 82 / 219 1.15G 0.03921 0.01886 0.00257 0.06064 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.53it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.38it / s] all 35 64 0.359 0.896 0.771 0.46 Epoch gpu_mem box obj cls total targets img_size 83 / 219 1.15G 0.03793 0.0172 0.002975 0.0581 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.01it / s] all 35 64 0.293 0.909 0.727 0.478 Epoch gpu_mem box obj cls total targets img_size 84 / 219 1.15G 0.03621 0.01691 0.002578 0.0557 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.01it / s] all 35 64 0.333 0.942 0.868 0.528 Epoch gpu_mem box obj cls total targets img_size 85 / 219 1.15G 0.03791 0.01807 0.002093 0.05808 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.36it / s] all 35 64 0.276 0.954 0.841 0.471 Epoch gpu_mem box obj cls total targets img_size 86 / 219 1.15G 0.03663 0.01764 0.002355 0.05662 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.11it / s] all 35 64 0.383 0.909 0.751 0.46 Epoch gpu_mem box obj cls total targets img_size 87 / 219 1.15G 0.0359 0.01732 0.002077 0.0553 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.64it / s] all 35 64 0.41 0.954 0.743 0.453 Epoch gpu_mem box obj cls total targets img_size 88 / 219 1.15G 0.03478 0.0185 0.002543 0.05582 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.25it / s] all 35 64 0.468 0.854 0.684 0.433 Epoch gpu_mem box obj cls total targets img_size 89 / 219 1.15G 0.03589 0.01781 0.001924 0.05563 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.55it / s] all 35 64 0.439 0.921 0.756 0.417 Epoch gpu_mem box obj cls total targets img_size 90 / 219 1.15G 0.03567 0.01798 0.002169 0.05582 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.00it / s] all 35 64 0.302 0.909 0.731 0.449 Epoch gpu_mem box obj cls total targets img_size 91 / 219 1.15G 0.03843 0.01805 0.002938 0.05942 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.29it / s] all 35 64 0.378 0.975 0.849 0.481 Epoch gpu_mem box obj cls total targets img_size 92 / 219 1.15G 0.03778 0.01781 0.002724 0.05832 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.60it / s] all 35 64 0.309 0.942 0.764 0.467 Epoch gpu_mem box obj cls total targets img_size 93 / 219 1.15G 0.03525 0.01618 0.002132 0.05356 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.32it / s] all 35 64 0.388 0.975 0.809 0.487 Epoch gpu_mem box obj cls total targets img_size 94 / 219 1.15G 0.03553 0.01796 0.002252 0.05575 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.31it / s] all 35 64 0.402 0.942 0.724 0.447 Epoch gpu_mem box obj cls total targets img_size 95 / 219 1.15G 0.03651 0.01942 0.002089 0.05802 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.46it / s] all 35 64 0.444 0.954 0.741 0.455 Epoch gpu_mem box obj cls total targets img_size 96 / 219 1.15G 0.0358 0.01673 0.002507 0.05504 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.31it / s] all 35 64 0.358 0.921 0.751 0.417 Epoch gpu_mem box obj cls total targets img_size 97 / 219 1.15G 0.03938 0.01722 0.001711 0.05832 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.68it / s] all 35 64 0.39 0.888 0.704 0.382 Epoch gpu_mem box obj cls total targets img_size 98 / 219 1.15G 0.03612 0.01575 0.002414 0.05429 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.16it / s] all 35 64 0.401 0.888 0.675 0.405 Epoch gpu_mem box obj cls total targets img_size 99 / 219 1.15G 0.03437 0.01751 0.002453 0.05433 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 38 < 00 : 00 , 2.56it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.69it / s] all 35 64 0.377 0.921 0.805 0.531 Epoch gpu_mem box obj cls total targets img_size 100 / 219 1.15G 0.03267 0.01733 0.002083 0.05209 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.56it / s] all 35 64 0.399 1 0.875 0.543 Epoch gpu_mem box obj cls total targets img_size 101 / 219 1.15G 0.03276 0.01778 0.001902 0.05244 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.55it / s] all 35 64 0.37 0.967 0.846 0.525 Epoch gpu_mem box obj cls total targets img_size 102 / 219 1.15G 0.03402 0.01511 0.002302 0.05143 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.50it / s] all 35 64 0.388 0.933 0.858 0.547 Epoch gpu_mem box obj cls total targets img_size 103 / 219 1.15G 0.03341 0.0172 0.001874 0.05248 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.56it / s] all 35 64 0.406 1 0.946 0.558 Epoch gpu_mem box obj cls total targets img_size 104 / 219 1.15G 0.03499 0.01664 0.002133 0.05376 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.31it / s] all 35 64 0.378 1 0.922 0.522 Epoch gpu_mem box obj cls total targets img_size 105 / 219 1.15G 0.03466 0.01687 0.002243 0.05377 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.72it / s] all 35 64 0.361 0.988 0.869 0.466 Epoch gpu_mem box obj cls total targets img_size 106 / 219 1.15G 0.03354 0.01561 0.002008 0.05115 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.05it / s] all 35 64 0.247 1 0.846 0.525 Epoch gpu_mem box obj cls total targets img_size 107 / 219 1.15G 0.03373 0.01565 0.001955 0.05134 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.37it / s] all 35 64 0.49 1 0.84 0.495 Epoch gpu_mem box obj cls total targets img_size 108 / 219 1.15G 0.03205 0.01572 0.001966 0.04974 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.71it / s] all 35 64 0.494 1 0.788 0.517 Epoch gpu_mem box obj cls total targets img_size 109 / 219 1.15G 0.03323 0.01593 0.001817 0.05098 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.12it / s] all 35 64 0.412 0.988 0.827 0.487 Epoch gpu_mem box obj cls total targets img_size 110 / 219 1.15G 0.03589 0.01612 0.001763 0.05377 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.05it / s] all 35 64 0.354 0.967 0.827 0.555 Epoch gpu_mem box obj cls total targets img_size 111 / 219 1.15G 0.03214 0.01601 0.001756 0.0499 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.66it / s] all 35 64 0.33 1 0.87 0.565 Epoch gpu_mem box obj cls total targets img_size 112 / 219 1.15G 0.03065 0.01542 0.002027 0.0481 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.42it / s] all 35 64 0.412 0.967 0.844 0.546 Epoch gpu_mem box obj cls total targets img_size 113 / 219 1.15G 0.02961 0.01652 0.002483 0.04861 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.08it / s] all 35 64 0.509 1 0.873 0.549 Epoch gpu_mem box obj cls total targets img_size 114 / 219 1.15G 0.02873 0.01718 0.001896 0.0478 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.93it / s] all 35 64 0.453 0.988 0.86 0.543 Epoch gpu_mem box obj cls total targets img_size 115 / 219 1.15G 0.03044 0.01552 0.001819 0.04778 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.16it / s] all 35 64 0.398 0.963 0.83 0.534 Epoch gpu_mem box obj cls total targets img_size 116 / 219 1.15G 0.03118 0.01528 0.002 0.04846 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.29it / s] all 35 64 0.42 0.975 0.863 0.537 Epoch gpu_mem box obj cls total targets img_size 117 / 219 1.15G 0.03215 0.01658 0.00218 0.05091 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.23it / s] all 35 64 0.387 0.933 0.72 0.454 Epoch gpu_mem box obj cls total targets img_size 118 / 219 1.15G 0.03101 0.01634 0.001557 0.04891 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.44it / s] all 35 64 0.421 0.967 0.741 0.485 Epoch gpu_mem box obj cls total targets img_size 119 / 219 1.15G 0.02877 0.01595 0.001549 0.04626 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.18it / s] all 35 64 0.4 1 0.842 0.519 Epoch gpu_mem box obj cls total targets img_size 120 / 219 1.15G 0.02877 0.01547 0.001495 0.04574 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.73it / s] all 35 64 0.454 0.933 0.736 0.499 Epoch gpu_mem box obj cls total targets img_size 121 / 219 1.15G 0.02764 0.01653 0.00191 0.04609 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.98it / s] all 35 64 0.468 1 0.773 0.508 Epoch gpu_mem box obj cls total targets img_size 122 / 219 1.15G 0.0284 0.01439 0.002016 0.0448 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.97it / s] all 35 64 0.4 0.988 0.912 0.581 Epoch gpu_mem box obj cls total targets img_size 123 / 219 1.15G 0.02923 0.01496 0.00165 0.04584 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.07it / s] all 35 64 0.367 1 0.927 0.579 Epoch gpu_mem box obj cls total targets img_size 124 / 219 1.15G 0.02999 0.01504 0.001724 0.04675 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.58it / s] all 35 64 0.413 1 0.869 0.568 Epoch gpu_mem box obj cls total targets img_size 125 / 219 1.15G 0.03066 0.01539 0.00155 0.0476 14 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.58it / s] all 35 64 0.359 0.921 0.708 0.475 Epoch gpu_mem box obj cls total targets img_size 126 / 219 1.15G 0.03082 0.01629 0.00227 0.04938 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.35it / s] all 35 64 0.436 0.967 0.884 0.591 Epoch gpu_mem box obj cls total targets img_size 127 / 219 1.15G 0.02814 0.01472 0.001715 0.04457 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.60it / s] all 35 64 0.479 0.988 0.917 0.595 Epoch gpu_mem box obj cls total targets img_size 128 / 219 1.15G 0.03132 0.0146 0.001672 0.0476 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.01it / s] all 35 64 0.555 0.967 0.887 0.586 Epoch gpu_mem box obj cls total targets img_size 129 / 219 1.15G 0.02851 0.01559 0.001759 0.04586 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.90it / s] all 35 64 0.549 1 0.942 0.599 Epoch gpu_mem box obj cls total targets img_size 130 / 219 1.15G 0.02721 0.0155 0.001492 0.04421 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.23it / s] all 35 64 0.536 1 0.952 0.619 Epoch gpu_mem box obj cls total targets img_size 131 / 219 1.15G 0.02975 0.01462 0.001811 0.04619 16 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.14it / s] all 35 64 0.503 1 0.958 0.607 Epoch gpu_mem box obj cls total targets img_size 132 / 219 1.15G 0.02748 0.01492 0.001915 0.04432 11 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.32it / s] all 35 64 0.58 1 0.972 0.617 Epoch gpu_mem box obj cls total targets img_size 133 / 219 1.15G 0.02677 0.01547 0.001553 0.04379 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.08it / s] all 35 64 0.506 1 0.924 0.589 Epoch gpu_mem box obj cls total targets img_size 134 / 219 1.15G 0.02686 0.01404 0.001387 0.04229 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.84it / s] all 35 64 0.433 1 0.921 0.605 Epoch gpu_mem box obj cls total targets img_size 135 / 219 1.15G 0.02668 0.01492 0.001745 0.04335 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.78it / s] all 35 64 0.503 1 0.936 0.612 Epoch gpu_mem box obj cls total targets img_size 136 / 219 1.15G 0.02687 0.01456 0.001386 0.04282 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.19it / s] all 35 64 0.485 1 0.914 0.6 Epoch gpu_mem box obj cls total targets img_size 137 / 219 1.15G 0.02913 0.01498 0.001306 0.04542 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.18it / s] all 35 64 0.493 1 0.911 0.577 Epoch gpu_mem box obj cls total targets img_size 138 / 219 1.15G 0.0304 0.01483 0.001772 0.047 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.16it / s] all 35 64 0.522 1 0.927 0.61 Epoch gpu_mem box obj cls total targets img_size 139 / 219 1.15G 0.02623 0.01471 0.001644 0.04259 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.14it / s] all 35 64 0.44 1 0.929 0.62 Epoch gpu_mem box obj cls total targets img_size 140 / 219 1.15G 0.02701 0.01475 0.00133 0.04309 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.37it / s] all 35 64 0.529 0.988 0.943 0.644 Epoch gpu_mem box obj cls total targets img_size 141 / 219 1.15G 0.02786 0.01499 0.001363 0.04422 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.26it / s] all 35 64 0.475 0.975 0.949 0.658 Epoch gpu_mem box obj cls total targets img_size 142 / 219 1.15G 0.02563 0.01502 0.001473 0.04212 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.59it / s] all 35 64 0.538 0.975 0.895 0.622 Epoch gpu_mem box obj cls total targets img_size 143 / 219 1.15G 0.02672 0.01429 0.001552 0.04256 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.62it / s] all 35 64 0.559 0.988 0.864 0.529 Epoch gpu_mem box obj cls total targets img_size 144 / 219 1.15G 0.02435 0.01485 0.001195 0.04039 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 38 < 00 : 00 , 2.55it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.34it / s] all 35 64 0.551 1 0.864 0.55 Epoch gpu_mem box obj cls total targets img_size 145 / 219 1.15G 0.02475 0.0135 0.001257 0.03951 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.58it / s] all 35 64 0.546 1 0.884 0.575 Epoch gpu_mem box obj cls total targets img_size 146 / 219 1.15G 0.02665 0.01418 0.00137 0.0422 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.49it / s] all 35 64 0.543 0.933 0.825 0.588 Epoch gpu_mem box obj cls total targets img_size 147 / 219 1.15G 0.02567 0.01438 0.001424 0.04148 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.53it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.74it / s] all 35 64 0.53 1 0.882 0.612 Epoch gpu_mem box obj cls total targets img_size 148 / 219 1.15G 0.02661 0.01479 0.001216 0.04262 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.58it / s] all 35 64 0.511 1 0.849 0.586 Epoch gpu_mem box obj cls total targets img_size 149 / 219 1.15G 0.026 0.01499 0.00133 0.04231 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.28it / s] all 35 64 0.482 0.975 0.88 0.574 Epoch gpu_mem box obj cls total targets img_size 150 / 219 1.15G 0.02434 0.01321 0.001548 0.0391 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.48it / s] all 35 64 0.53 0.988 0.919 0.554 Epoch gpu_mem box obj cls total targets img_size 151 / 219 1.15G 0.02652 0.01469 0.001537 0.04274 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.76it / s] all 35 64 0.546 0.954 0.838 0.564 Epoch gpu_mem box obj cls total targets img_size 152 / 219 1.15G 0.02408 0.01359 0.001677 0.03935 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.34it / s] all 35 64 0.516 1 0.885 0.574 Epoch gpu_mem box obj cls total targets img_size 153 / 219 1.15G 0.02361 0.01332 0.001246 0.03818 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.80it / s] all 35 64 0.559 0.988 0.827 0.56 Epoch gpu_mem box obj cls total targets img_size 154 / 219 1.15G 0.02369 0.01384 0.001475 0.039 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.98it / s] all 35 64 0.457 1 0.897 0.576 Epoch gpu_mem box obj cls total targets img_size 155 / 219 1.15G 0.02497 0.01429 0.001415 0.04068 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.67it / s] all 35 64 0.45 1 0.928 0.63 Epoch gpu_mem box obj cls total targets img_size 156 / 219 1.15G 0.02303 0.01345 0.001241 0.03772 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.35it / s] all 35 64 0.456 1 0.938 0.646 Epoch gpu_mem box obj cls total targets img_size 157 / 219 1.15G 0.02544 0.01366 0.001272 0.04038 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.26it / s] all 35 64 0.453 1 0.863 0.571 Epoch gpu_mem box obj cls total targets img_size 158 / 219 1.15G 0.02638 0.01405 0.001113 0.04154 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.18it / s] all 35 64 0.593 1 0.867 0.563 Epoch gpu_mem box obj cls total targets img_size 159 / 219 1.15G 0.02557 0.0139 0.0009774 0.04045 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.92it / s] all 35 64 0.617 1 0.871 0.565 Epoch gpu_mem box obj cls total targets img_size 160 / 219 1.15G 0.02469 0.01423 0.001599 0.04053 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.29it / s] all 35 64 0.532 1 0.863 0.581 Epoch gpu_mem box obj cls total targets img_size 161 / 219 1.15G 0.02272 0.01368 0.001107 0.03751 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.57it / s] all 35 64 0.48 1 0.894 0.608 Epoch gpu_mem box obj cls total targets img_size 162 / 219 1.15G 0.02408 0.01338 0.001193 0.03865 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.21it / s] all 35 64 0.51 1 0.887 0.566 Epoch gpu_mem box obj cls total targets img_size 163 / 219 1.15G 0.02298 0.01351 0.001078 0.03757 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.95it / s] all 35 64 0.577 0.967 0.82 0.574 Epoch gpu_mem box obj cls total targets img_size 164 / 219 1.15G 0.02208 0.01316 0.0012 0.03644 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.42it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.04it / s] all 35 64 0.61 1 0.908 0.596 Epoch gpu_mem box obj cls total targets img_size 165 / 219 1.15G 0.0242 0.01332 0.001242 0.03876 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.35it / s] all 35 64 0.589 0.967 0.79 0.537 Epoch gpu_mem box obj cls total targets img_size 166 / 219 1.15G 0.02284 0.01239 0.000948 0.03618 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.09it / s] all 35 64 0.588 1 0.812 0.549 Epoch gpu_mem box obj cls total targets img_size 167 / 219 1.15G 0.02229 0.01356 0.001066 0.03691 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.51it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.61it / s] all 35 64 0.561 0.954 0.759 0.559 Epoch gpu_mem box obj cls total targets img_size 168 / 219 1.15G 0.02302 0.01397 0.0009229 0.03792 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.60it / s] all 35 64 0.519 0.933 0.773 0.554 Epoch gpu_mem box obj cls total targets img_size 169 / 219 1.15G 0.02261 0.01339 0.001081 0.03708 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.33it / s] all 35 64 0.536 1 0.806 0.55 Epoch gpu_mem box obj cls total targets img_size 170 / 219 1.15G 0.02323 0.01347 0.0009928 0.03769 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.61it / s] all 35 64 0.468 1 0.857 0.56 Epoch gpu_mem box obj cls total targets img_size 171 / 219 1.15G 0.02349 0.01269 0.001046 0.03723 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.15it / s] all 35 64 0.505 1 0.909 0.587 Epoch gpu_mem box obj cls total targets img_size 172 / 219 1.15G 0.02144 0.01321 0.0009105 0.03556 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.59it / s] all 35 64 0.551 1 0.926 0.598 Epoch gpu_mem box obj cls total targets img_size 173 / 219 1.15G 0.02165 0.01325 0.0008481 0.03575 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.14it / s] all 35 64 0.558 0.967 0.782 0.523 Epoch gpu_mem box obj cls total targets img_size 174 / 219 1.15G 0.02216 0.01308 0.001429 0.03667 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.05it / s] all 35 64 0.586 1 0.878 0.551 Epoch gpu_mem box obj cls total targets img_size 175 / 219 1.15G 0.02227 0.01274 0.001112 0.03613 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.66it / s] all 35 64 0.554 1 0.908 0.575 Epoch gpu_mem box obj cls total targets img_size 176 / 219 1.15G 0.02284 0.01346 0.0008962 0.0372 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.78it / s] all 35 64 0.552 0.988 0.926 0.614 Epoch gpu_mem box obj cls total targets img_size 177 / 219 1.15G 0.02229 0.01341 0.0009326 0.03664 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.06it / s] all 35 64 0.58 1 0.922 0.613 Epoch gpu_mem box obj cls total targets img_size 178 / 219 1.15G 0.02205 0.01252 0.001031 0.0356 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.09it / s] all 35 64 0.565 1 0.924 0.608 Epoch gpu_mem box obj cls total targets img_size 179 / 219 1.15G 0.02184 0.01312 0.001091 0.03604 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.54it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.34it / s] all 35 64 0.567 1 0.934 0.615 Epoch gpu_mem box obj cls total targets img_size 180 / 219 1.15G 0.02118 0.01282 0.001134 0.03513 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 38 < 00 : 00 , 2.54it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.53it / s] all 35 64 0.506 0.988 0.935 0.606 Epoch gpu_mem box obj cls total targets img_size 181 / 219 1.15G 0.02226 0.01303 0.001202 0.03649 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.32it / s] all 35 64 0.512 1 0.953 0.6 Epoch gpu_mem box obj cls total targets img_size 182 / 219 1.15G 0.02136 0.01261 0.001122 0.03509 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.43it / s] all 35 64 0.529 1 0.934 0.591 Epoch gpu_mem box obj cls total targets img_size 183 / 219 1.15G 0.02152 0.01314 0.001002 0.03566 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.68it / s] all 35 64 0.562 1 0.881 0.582 Epoch gpu_mem box obj cls total targets img_size 184 / 219 1.15G 0.02183 0.01368 0.001043 0.03655 7 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.31it / s] all 35 64 0.53 1 0.929 0.588 Epoch gpu_mem box obj cls total targets img_size 185 / 219 1.15G 0.02124 0.01318 0.001149 0.03557 17 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.58it / s] all 35 64 0.508 1 0.902 0.605 Epoch gpu_mem box obj cls total targets img_size 186 / 219 1.15G 0.02138 0.01362 0.0009482 0.03595 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.87it / s] all 35 64 0.526 1 0.915 0.598 Epoch gpu_mem box obj cls total targets img_size 187 / 219 1.15G 0.02166 0.01321 0.00104 0.03591 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.63it / s] all 35 64 0.528 0.988 0.898 0.599 Epoch gpu_mem box obj cls total targets img_size 188 / 219 1.15G 0.02183 0.01252 0.001241 0.03559 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.08it / s] all 35 64 0.528 1 0.906 0.588 Epoch gpu_mem box obj cls total targets img_size 189 / 219 1.15G 0.02153 0.01299 0.001052 0.03557 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.54it / s] all 35 64 0.52 1 0.907 0.584 Epoch gpu_mem box obj cls total targets img_size 190 / 219 1.15G 0.02127 0.01329 0.001209 0.03577 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.43it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.88it / s] all 35 64 0.489 1 0.913 0.615 Epoch gpu_mem box obj cls total targets img_size 191 / 219 1.15G 0.02225 0.01218 0.001079 0.03551 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.62it / s] all 35 64 0.453 0.933 0.829 0.586 Epoch gpu_mem box obj cls total targets img_size 192 / 219 1.15G 0.02278 0.01314 0.001596 0.03752 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.00it / s] all 35 64 0.573 1 0.937 0.62 Epoch gpu_mem box obj cls total targets img_size 193 / 219 1.15G 0.02227 0.0129 0.00113 0.0363 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.97it / s] all 35 64 0.616 1 0.944 0.6 Epoch gpu_mem box obj cls total targets img_size 194 / 219 1.15G 0.02144 0.01302 0.001229 0.03569 2 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.09it / s] all 35 64 0.561 0.988 0.934 0.613 Epoch gpu_mem box obj cls total targets img_size 195 / 219 1.15G 0.02076 0.01266 0.0009046 0.03432 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.11it / s] all 35 64 0.595 1 0.942 0.64 Epoch gpu_mem box obj cls total targets img_size 196 / 219 1.15G 0.02144 0.01415 0.00102 0.03661 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.22it / s] all 35 64 0.616 1 0.948 0.606 Epoch gpu_mem box obj cls total targets img_size 197 / 219 1.15G 0.02175 0.01297 0.0009834 0.0357 10 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.53it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.92it / s] all 35 64 0.614 1 0.947 0.611 Epoch gpu_mem box obj cls total targets img_size 198 / 219 1.15G 0.02141 0.01367 0.001077 0.03615 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.29it / s] all 35 64 0.628 1 0.943 0.616 Epoch gpu_mem box obj cls total targets img_size 199 / 219 1.15G 0.02147 0.01291 0.0009019 0.03529 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.42it / s] all 35 64 0.619 1 0.939 0.632 Epoch gpu_mem box obj cls total targets img_size 200 / 219 1.15G 0.02196 0.01235 0.0009979 0.03531 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.53it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.46it / s] all 35 64 0.62 1 0.931 0.639 Epoch gpu_mem box obj cls total targets img_size 201 / 219 1.15G 0.02106 0.01238 0.0009673 0.03441 3 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.98it / s] all 35 64 0.612 1 0.927 0.632 Epoch gpu_mem box obj cls total targets img_size 202 / 219 1.15G 0.02169 0.01244 0.0009445 0.03507 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.77it / s] all 35 64 0.609 1 0.939 0.601 Epoch gpu_mem box obj cls total targets img_size 203 / 219 1.15G 0.02055 0.01297 0.001039 0.03456 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.20it / s] all 35 64 0.559 1 0.946 0.649 Epoch gpu_mem box obj cls total targets img_size 204 / 219 1.15G 0.02086 0.01286 0.001279 0.035 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.07it / s] all 35 64 0.47 1 0.985 0.688 Epoch gpu_mem box obj cls total targets img_size 205 / 219 1.15G 0.01903 0.01234 0.001038 0.03241 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.54it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.25it / s] all 35 64 0.466 1 0.985 0.704 Epoch gpu_mem box obj cls total targets img_size 206 / 219 1.15G 0.02105 0.0135 0.001273 0.03582 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.62it / s] all 35 64 0.503 1 0.978 0.692 Epoch gpu_mem box obj cls total targets img_size 207 / 219 1.15G 0.02022 0.0125 0.001094 0.03382 12 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.52it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.43it / s] all 35 64 0.532 1 0.959 0.648 Epoch gpu_mem box obj cls total targets img_size 208 / 219 1.15G 0.02043 0.01208 0.0008767 0.03338 9 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.34it / s] all 35 64 0.572 1 0.949 0.635 Epoch gpu_mem box obj cls total targets img_size 209 / 219 1.15G 0.02151 0.01249 0.001026 0.03502 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.75it / s] all 35 64 0.596 1 0.955 0.655 Epoch gpu_mem box obj cls total targets img_size 210 / 219 1.15G 0.02033 0.01273 0.0009645 0.03403 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.68it / s] all 35 64 0.617 1 0.944 0.608 Epoch gpu_mem box obj cls total targets img_size 211 / 219 1.15G 0.0197 0.01268 0.0009006 0.03328 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.74it / s] all 35 64 0.637 1 0.933 0.613 Epoch gpu_mem box obj cls total targets img_size 212 / 219 1.15G 0.02013 0.01187 0.0007861 0.03278 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.48it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.39it / s] all 35 64 0.636 1 0.916 0.581 Epoch gpu_mem box obj cls total targets img_size 213 / 219 1.15G 0.02071 0.01277 0.0007139 0.03419 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.45it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.95it / s] all 35 64 0.61 1 0.925 0.594 Epoch gpu_mem box obj cls total targets img_size 214 / 219 1.15G 0.01996 0.01283 0.001222 0.034 4 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.47it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.18it / s] all 35 64 0.585 1 0.933 0.59 Epoch gpu_mem box obj cls total targets img_size 215 / 219 1.15G 0.02019 0.01187 0.000845 0.0329 13 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.44it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.33it / s] all 35 64 0.598 1 0.972 0.624 Epoch gpu_mem box obj cls total targets img_size 216 / 219 1.15G 0.02078 0.01273 0.0008943 0.03441 8 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.55it / s] all 35 64 0.566 1 0.965 0.645 Epoch gpu_mem box obj cls total targets img_size 217 / 219 1.15G 0.01883 0.01106 0.0008032 0.03069 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.49it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.25it / s] all 35 64 0.641 1 0.964 0.643 Epoch gpu_mem box obj cls total targets img_size 218 / 219 1.15G 0.0197 0.01275 0.000933 0.03338 6 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 39 < 00 : 00 , 2.50it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 7.10it / s] all 35 64 0.645 1 0.947 0.64 Epoch gpu_mem box obj cls total targets img_size 219 / 219 1.15G 0.01988 0.01277 0.0008892 0.03354 5 640 : 100 % |█████████████████████████████████████████████████████████████████████| 99 / 99 [ 00 : 40 < 00 : 00 , 2.46it / s] Class Images Targets P R mAP @. 5 mAP @. 5 :. 95 : 100 % |█████████████████████████████████████████████████████████| 18 / 18 [ 00 : 02 < 00 : 00 , 6.51it / s] all 35 64 0.614 1 0.938 0.63 Optimizer stripped from runs\train\exp2\weights\last.pt, 42.5MB Optimizer stripped from runs\train\exp2\weights\best.pt, 42.5MB 220 epochs completed in 2.617 hours. (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> (wind_2021) F:\PytorchProject\yolov5_train_rope> |
#####################
QQ 3087438119
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 使用C#创建一个MCP客户端
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 按钮权限的设计及实现
2021-06-14 C# Queue
2020-06-14 IfcRelAssignsToGroupByFactor
2019-06-14 osg help
2017-06-14 Java C++ Socket通讯