kylecsnow commited on
Commit
75ed4b7
·
verified ·
1 Parent(s): 508aef3

Upload 27 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,24 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ runs/detect/train18/confusion_matrix_normalized.png filter=lfs diff=lfs merge=lfs -text
37
+ runs/detect/train18/confusion_matrix.png filter=lfs diff=lfs merge=lfs -text
38
+ runs/detect/train18/F1_curve.png filter=lfs diff=lfs merge=lfs -text
39
+ runs/detect/train18/labels_correlogram.jpg filter=lfs diff=lfs merge=lfs -text
40
+ runs/detect/train18/labels.jpg filter=lfs diff=lfs merge=lfs -text
41
+ runs/detect/train18/P_curve.png filter=lfs diff=lfs merge=lfs -text
42
+ runs/detect/train18/PR_curve.png filter=lfs diff=lfs merge=lfs -text
43
+ runs/detect/train18/R_curve.png filter=lfs diff=lfs merge=lfs -text
44
+ runs/detect/train18/results.png filter=lfs diff=lfs merge=lfs -text
45
+ runs/detect/train18/train_batch0.jpg filter=lfs diff=lfs merge=lfs -text
46
+ runs/detect/train18/train_batch1.jpg filter=lfs diff=lfs merge=lfs -text
47
+ runs/detect/train18/train_batch1440.jpg filter=lfs diff=lfs merge=lfs -text
48
+ runs/detect/train18/train_batch1441.jpg filter=lfs diff=lfs merge=lfs -text
49
+ runs/detect/train18/train_batch1442.jpg filter=lfs diff=lfs merge=lfs -text
50
+ runs/detect/train18/train_batch2.jpg filter=lfs diff=lfs merge=lfs -text
51
+ runs/detect/train18/val_batch0_labels.jpg filter=lfs diff=lfs merge=lfs -text
52
+ runs/detect/train18/val_batch0_pred.jpg filter=lfs diff=lfs merge=lfs -text
53
+ runs/detect/train18/val_batch1_labels.jpg filter=lfs diff=lfs merge=lfs -text
54
+ runs/detect/train18/val_batch1_pred.jpg filter=lfs diff=lfs merge=lfs -text
55
+ runs/detect/train18/val_batch2_labels.jpg filter=lfs diff=lfs merge=lfs -text
56
+ runs/detect/train18/val_batch2_pred.jpg filter=lfs diff=lfs merge=lfs -text
runs/.DS_Store ADDED
Binary file (6.15 kB). View file
 
runs/detect/train18/.DS_Store ADDED
Binary file (6.15 kB). View file
 
runs/detect/train18/F1_curve.png ADDED

Git LFS Details

  • SHA256: 1e1bb024904a7c465ac2acb7cd494559cc26f67828fae17e9abea62b8a454b8f
  • Pointer size: 131 Bytes
  • Size of remote file: 144 kB
runs/detect/train18/PR_curve.png ADDED

Git LFS Details

  • SHA256: 146798e4d4a981bce425c3fcf6c35f8af335fb3f4d7cb13e565a04e4e7bc751b
  • Pointer size: 131 Bytes
  • Size of remote file: 117 kB
runs/detect/train18/P_curve.png ADDED

Git LFS Details

  • SHA256: ddfcf4abd80c9315424aa4f948c90494b27093b76ff5b12e475ae017a1e29e34
  • Pointer size: 131 Bytes
  • Size of remote file: 120 kB
runs/detect/train18/R_curve.png ADDED

Git LFS Details

  • SHA256: b65aaf71c1408c320850ecd1ae502032261cfccd3091685f483c19b0589670eb
  • Pointer size: 131 Bytes
  • Size of remote file: 149 kB
runs/detect/train18/args.yaml ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ task: detect
2
+ mode: train
3
+ model: yolov8m.pt
4
+ data: /Users/kyle/dev/yolov5/datasets/blood_cell_object_detection/dataset.yaml
5
+ epochs: 100
6
+ time: null
7
+ patience: 100
8
+ batch: 16
9
+ imgsz: 416
10
+ save: true
11
+ save_period: -1
12
+ cache: false
13
+ device: null
14
+ workers: 8
15
+ project: null
16
+ name: train18
17
+ exist_ok: false
18
+ pretrained: true
19
+ optimizer: auto
20
+ verbose: true
21
+ seed: 0
22
+ deterministic: true
23
+ single_cls: false
24
+ rect: false
25
+ cos_lr: false
26
+ close_mosaic: 10
27
+ resume: false
28
+ amp: true
29
+ fraction: 1.0
30
+ profile: false
31
+ freeze: null
32
+ multi_scale: false
33
+ overlap_mask: true
34
+ mask_ratio: 4
35
+ dropout: 0.0
36
+ val: true
37
+ split: val
38
+ save_json: false
39
+ conf: null
40
+ iou: 0.7
41
+ max_det: 300
42
+ half: false
43
+ dnn: false
44
+ plots: true
45
+ source: null
46
+ vid_stride: 1
47
+ stream_buffer: false
48
+ visualize: false
49
+ augment: false
50
+ agnostic_nms: false
51
+ classes: null
52
+ retina_masks: false
53
+ embed: null
54
+ show: false
55
+ save_frames: false
56
+ save_txt: false
57
+ save_conf: false
58
+ save_crop: false
59
+ show_labels: true
60
+ show_conf: true
61
+ show_boxes: true
62
+ line_width: null
63
+ format: torchscript
64
+ keras: false
65
+ optimize: false
66
+ int8: false
67
+ dynamic: false
68
+ simplify: true
69
+ opset: null
70
+ workspace: null
71
+ nms: false
72
+ lr0: 0.01
73
+ lrf: 0.01
74
+ momentum: 0.937
75
+ weight_decay: 0.0005
76
+ warmup_epochs: 3.0
77
+ warmup_momentum: 0.8
78
+ warmup_bias_lr: 0.1
79
+ box: 7.5
80
+ cls: 0.5
81
+ dfl: 1.5
82
+ pose: 12.0
83
+ kobj: 1.0
84
+ nbs: 64
85
+ hsv_h: 0.015
86
+ hsv_s: 0.7
87
+ hsv_v: 0.4
88
+ degrees: 0.0
89
+ translate: 0.1
90
+ scale: 0.5
91
+ shear: 0.0
92
+ perspective: 0.0
93
+ flipud: 0.0
94
+ fliplr: 0.5
95
+ bgr: 0.0
96
+ mosaic: 1.0
97
+ mixup: 0.0
98
+ copy_paste: 0.0
99
+ copy_paste_mode: flip
100
+ auto_augment: randaugment
101
+ erasing: 0.4
102
+ cfg: null
103
+ tracker: botsort.yaml
104
+ save_dir: runs/detect/train18
runs/detect/train18/confusion_matrix.png ADDED

Git LFS Details

  • SHA256: 42f5275fbf33dbcd03076a48c076e37a586f5555c32d9e002d663db237022203
  • Pointer size: 131 Bytes
  • Size of remote file: 100 kB
runs/detect/train18/confusion_matrix_normalized.png ADDED

Git LFS Details

  • SHA256: dc732824432c773e612a388b5c2f35c8be37283845f8a9374b7c5edfe1163fe1
  • Pointer size: 131 Bytes
  • Size of remote file: 103 kB
runs/detect/train18/labels.jpg ADDED

Git LFS Details

  • SHA256: e42c193e0f8381e0118b84556bcfeec3837a8800c51f0db75a7b9843cee04773
  • Pointer size: 131 Bytes
  • Size of remote file: 166 kB
runs/detect/train18/labels_correlogram.jpg ADDED

Git LFS Details

  • SHA256: 5c43510599cd3f42677575f940d04f2520c5a82abaf021a9316097a3702a85f1
  • Pointer size: 131 Bytes
  • Size of remote file: 242 kB
runs/detect/train18/results.csv ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ epoch,time,train/box_loss,train/cls_loss,train/dfl_loss,metrics/precision(B),metrics/recall(B),metrics/mAP50(B),metrics/mAP50-95(B),val/box_loss,val/cls_loss,val/dfl_loss,lr/pg0,lr/pg1,lr/pg2
2
+ 1,123.368,1.41885,1.94163,1.51329,0.33939,0.63319,0.52334,0.33039,1.142,4.58962,1.29533,0.00021435,0.00021435,0.00021435
3
+ 2,247.704,1.2093,1.00812,1.2917,0.78,0.88626,0.85894,0.52657,1.211,1.62214,1.39742,0.000438604,0.000438604,0.000438604
4
+ 3,371.071,1.18072,0.97534,1.28534,0.75468,0.88405,0.8506,0.55225,1.1292,1.92451,1.30185,0.000658332,0.000658332,0.000658332
5
+ 4,501.505,1.18724,0.98492,1.29369,0.72254,0.81569,0.82805,0.51872,1.17507,1.57411,1.34911,0.000873532,0.000873532,0.000873532
6
+ 5,625.821,1.16083,0.91219,1.26571,0.58312,0.82758,0.77264,0.42722,1.28926,1.57076,1.53519,0.00108421,0.00108421,0.00108421
7
+ 6,750.714,1.12992,0.88758,1.24735,0.43968,0.63388,0.50635,0.29925,1.40402,1.914,1.62423,0.00129035,0.00129035,0.00129035
8
+ 7,873.969,1.15021,0.88386,1.27211,0.72539,0.82986,0.83595,0.50474,1.21315,1.49152,1.39652,0.00134412,0.00134412,0.00134412
9
+ 8,997.564,1.11075,0.84082,1.22907,0.65593,0.63599,0.69333,0.33838,1.47939,1.31954,1.47617,0.00132997,0.00132997,0.00132997
10
+ 9,1121.84,1.11815,0.83937,1.24234,0.82232,0.86876,0.89264,0.57525,1.11769,0.93321,1.29595,0.00131582,0.00131582,0.00131582
11
+ 10,1245.3,1.12133,0.83709,1.22858,0.81974,0.86764,0.91458,0.59838,1.09087,0.88198,1.26937,0.00130168,0.00130168,0.00130168
12
+ 11,1369.56,1.10616,0.8157,1.22055,0.85668,0.84517,0.91527,0.60332,1.09212,0.89084,1.24527,0.00128753,0.00128753,0.00128753
13
+ 12,1492.6,1.08484,0.76621,1.19256,0.82099,0.91658,0.91832,0.61809,1.08548,0.89336,1.22548,0.00127338,0.00127338,0.00127338
14
+ 13,1615.63,1.08784,0.78354,1.20963,0.85214,0.88153,0.90798,0.60338,1.29633,0.87055,1.31958,0.00125923,0.00125923,0.00125923
15
+ 14,1739.25,1.10735,0.79869,1.2295,0.83528,0.8628,0.90668,0.59659,1.11822,0.8602,1.28389,0.00124509,0.00124509,0.00124509
16
+ 15,1863.03,1.07374,0.78552,1.20346,0.80481,0.91041,0.91688,0.62795,1.0755,0.80387,1.23783,0.00123094,0.00123094,0.00123094
17
+ 16,1986.39,1.07799,0.77566,1.21021,0.83751,0.87259,0.88899,0.55521,1.16582,0.87872,1.26246,0.00121679,0.00121679,0.00121679
18
+ 17,2108.31,1.09439,0.81064,1.21266,0.83737,0.89087,0.92192,0.63398,1.08965,0.77555,1.22097,0.00120265,0.00120265,0.00120265
19
+ 18,2230.3,1.04196,0.74695,1.18116,0.81127,0.82073,0.8931,0.61789,1.23583,0.84523,1.31787,0.0011885,0.0011885,0.0011885
20
+ 19,2352.61,1.08188,0.75289,1.21537,0.83157,0.86861,0.9104,0.61601,1.11374,0.80964,1.3276,0.00117435,0.00117435,0.00117435
21
+ 20,2473.73,1.03851,0.74529,1.20064,0.78223,0.8437,0.87517,0.554,1.36697,1.30064,1.48734,0.00116021,0.00116021,0.00116021
22
+ 21,2594.13,1.05955,0.74045,1.21265,0.80106,0.85561,0.90623,0.59312,1.1839,0.90028,1.32677,0.00114606,0.00114606,0.00114606
23
+ 22,2715.83,1.03304,0.7122,1.17948,0.86222,0.91109,0.93144,0.65075,1.06764,0.75763,1.22877,0.00113191,0.00113191,0.00113191
24
+ 23,2837.69,1.04403,0.71665,1.18782,0.85172,0.9058,0.91169,0.62149,1.13675,0.78288,1.29308,0.00111776,0.00111776,0.00111776
25
+ 24,2959.94,1.05088,0.71706,1.19157,0.86221,0.86353,0.90955,0.6228,1.15148,0.78763,1.28911,0.00110362,0.00110362,0.00110362
26
+ 25,3080.86,1.05235,0.71563,1.20163,0.81024,0.91919,0.91504,0.60828,1.10965,0.8312,1.2756,0.00108947,0.00108947,0.00108947
27
+ 26,3201.75,1.02726,0.75021,1.17603,0.82355,0.87963,0.90492,0.61973,1.07045,0.74415,1.25606,0.00107532,0.00107532,0.00107532
28
+ 27,3353.94,1.02093,0.69747,1.17525,0.83236,0.91691,0.91434,0.64048,1.05964,0.77073,1.26333,0.00106118,0.00106118,0.00106118
29
+ 28,4169.77,1.03369,0.73379,1.18783,0.83789,0.90244,0.91695,0.62926,1.08627,0.77827,1.24368,0.00104703,0.00104703,0.00104703
30
+ 29,4366.62,1.01514,0.69441,1.15854,0.8543,0.89382,0.91938,0.61026,1.08654,0.73364,1.28533,0.00103288,0.00103288,0.00103288
31
+ 30,4489.7,0.99976,0.694,1.15644,0.86263,0.85815,0.90671,0.63224,1.05707,0.77815,1.26585,0.00101873,0.00101873,0.00101873
32
+ 31,4611.26,1.01096,0.68008,1.16211,0.84139,0.89952,0.9145,0.59746,1.0996,0.74264,1.25005,0.00100459,0.00100459,0.00100459
33
+ 32,4733.51,1.00195,0.67468,1.15591,0.84202,0.90617,0.92398,0.63955,1.06997,0.71339,1.23752,0.00099044,0.00099044,0.00099044
34
+ 33,4855.51,0.9916,0.67047,1.1546,0.83478,0.89436,0.91629,0.641,1.03812,0.81347,1.27115,0.000976293,0.000976293,0.000976293
35
+ 34,4977.43,0.98663,0.64989,1.15598,0.83461,0.88808,0.91814,0.62725,1.09414,0.75606,1.30418,0.000962146,0.000962146,0.000962146
36
+ 35,5099.54,0.9998,0.65936,1.16671,0.85203,0.90129,0.91166,0.6334,1.06658,0.72508,1.28712,0.000947999,0.000947999,0.000947999
37
+ 36,5220.42,0.9715,0.6489,1.1392,0.82348,0.81838,0.89699,0.57118,1.21576,0.83501,1.38602,0.000933851,0.000933851,0.000933851
38
+ 37,5340.9,0.94786,0.63717,1.12363,0.84714,0.91873,0.91136,0.63186,1.08579,0.68934,1.2341,0.000919704,0.000919704,0.000919704
39
+ 38,5461.5,0.96149,0.63086,1.13689,0.82832,0.93297,0.91463,0.62419,1.09488,0.70784,1.24634,0.000905557,0.000905557,0.000905557
40
+ 39,5581.74,0.96682,0.62611,1.13839,0.84914,0.88329,0.91379,0.63431,1.09017,0.82841,1.25636,0.00089141,0.00089141,0.00089141
41
+ 40,5702.27,0.97993,0.66077,1.16214,0.87063,0.90512,0.92415,0.63897,1.07019,0.74342,1.30911,0.000877263,0.000877263,0.000877263
42
+ 41,5822.69,0.95969,0.62419,1.13806,0.86155,0.89618,0.92401,0.63393,1.13312,0.73265,1.30019,0.000863116,0.000863116,0.000863116
43
+ 42,5943.6,0.96533,0.62,1.12875,0.86202,0.88957,0.92668,0.65149,1.06562,0.75415,1.26736,0.000848969,0.000848969,0.000848969
44
+ 43,6063.94,0.94413,0.59969,1.11006,0.82227,0.92114,0.91926,0.63039,1.10118,0.73767,1.30223,0.000834822,0.000834822,0.000834822
45
+ 44,6184.23,0.95852,0.60999,1.13509,0.84567,0.88471,0.91654,0.61339,1.11697,0.75857,1.31374,0.000820675,0.000820675,0.000820675
46
+ 45,6304.82,0.96089,0.62549,1.1388,0.84422,0.8914,0.90963,0.63689,1.08975,0.83919,1.30436,0.000806528,0.000806528,0.000806528
47
+ 46,6424.84,0.92817,0.58264,1.11607,0.85395,0.85343,0.90377,0.63108,1.11669,0.87926,1.35138,0.00079238,0.00079238,0.00079238
48
+ 47,6547.63,0.92125,0.60274,1.12114,0.84038,0.91601,0.92091,0.64769,1.09489,0.72395,1.2778,0.000778233,0.000778233,0.000778233
49
+ 48,6669.84,0.93579,0.58529,1.12429,0.84334,0.92537,0.91654,0.64729,1.08407,0.71043,1.29611,0.000764086,0.000764086,0.000764086
50
+ 49,6795.75,0.93015,0.58121,1.12143,0.84608,0.90339,0.91685,0.63715,1.09745,0.7267,1.31983,0.000749939,0.000749939,0.000749939
51
+ 50,6916.32,0.93368,0.57675,1.12408,0.82808,0.92268,0.91374,0.62661,1.09768,0.78769,1.31627,0.000735792,0.000735792,0.000735792
52
+ 51,7037.18,0.91145,0.58455,1.12084,0.8295,0.90799,0.91392,0.63752,1.08737,0.72162,1.28319,0.000721645,0.000721645,0.000721645
53
+ 52,7157.66,0.91413,0.55901,1.10223,0.84703,0.89111,0.91175,0.64174,1.0718,0.72326,1.27522,0.000707498,0.000707498,0.000707498
54
+ 53,7277.89,0.89696,0.54938,1.09848,0.84164,0.89233,0.91048,0.63181,1.06772,0.73919,1.26857,0.000693351,0.000693351,0.000693351
55
+ 54,7398.95,0.88086,0.55998,1.0862,0.85175,0.89258,0.91324,0.63087,1.10595,0.76571,1.29647,0.000679204,0.000679204,0.000679204
56
+ 55,7519.62,0.89018,0.54378,1.10387,0.86058,0.90621,0.91482,0.637,1.0676,0.69387,1.22387,0.000665057,0.000665057,0.000665057
57
+ 56,7641.12,0.90693,0.56404,1.10599,0.85366,0.86221,0.90641,0.63536,1.0888,0.8761,1.29694,0.000650909,0.000650909,0.000650909
58
+ 57,7762.57,0.90006,0.54368,1.09785,0.86197,0.90861,0.91594,0.64175,1.08754,0.73202,1.25575,0.000636762,0.000636762,0.000636762
59
+ 58,7885.24,0.8829,0.53938,1.11388,0.84601,0.86393,0.90657,0.63342,1.08405,0.96712,1.27401,0.000622615,0.000622615,0.000622615
60
+ 59,8009.47,0.85695,0.52233,1.0782,0.83969,0.88174,0.91216,0.6283,1.10845,0.80899,1.33301,0.000608468,0.000608468,0.000608468
61
+ 60,8133.14,0.88678,0.53084,1.09993,0.85694,0.90296,0.91943,0.6451,1.07443,0.73825,1.33311,0.000594321,0.000594321,0.000594321
62
+ 61,8257.55,0.85907,0.52845,1.09131,0.86116,0.87429,0.91346,0.6318,1.09674,0.78375,1.27122,0.000580174,0.000580174,0.000580174
63
+ 62,8380.54,0.86067,0.55194,1.09529,0.86692,0.90654,0.91887,0.63498,1.09109,0.71808,1.29159,0.000566027,0.000566027,0.000566027
64
+ 63,8502.68,0.83878,0.50414,1.06066,0.84973,0.92085,0.9162,0.6418,1.08517,0.70147,1.27561,0.00055188,0.00055188,0.00055188
65
+ 64,8624.43,0.83011,0.49144,1.05691,0.84865,0.90644,0.92157,0.63937,1.08976,0.75832,1.29562,0.000537733,0.000537733,0.000537733
66
+ 65,8744.44,0.85633,0.52235,1.08444,0.85854,0.90174,0.91222,0.63011,1.08341,0.71691,1.30414,0.000523586,0.000523586,0.000523586
67
+ 66,8866.46,0.83048,0.49931,1.07221,0.87083,0.88659,0.92058,0.65074,1.05927,0.72975,1.3027,0.000509438,0.000509438,0.000509438
68
+ 67,8992.68,0.82526,0.47623,1.06217,0.87944,0.88797,0.91838,0.64818,1.07104,0.72379,1.2729,0.000495291,0.000495291,0.000495291
69
+ 68,9119.24,0.82136,0.48477,1.05961,0.84773,0.90739,0.9132,0.64676,1.11918,0.72753,1.26799,0.000481144,0.000481144,0.000481144
70
+ 69,9241.74,0.81554,0.47621,1.07239,0.86204,0.8898,0.9127,0.64298,1.08146,0.76403,1.27264,0.000466997,0.000466997,0.000466997
71
+ 70,9363.42,0.80942,0.4765,1.05447,0.84758,0.90151,0.91293,0.63554,1.09774,0.77437,1.31913,0.00045285,0.00045285,0.00045285
72
+ 71,9486.62,0.81506,0.49589,1.06901,0.86282,0.88351,0.92199,0.64904,1.07904,0.87631,1.29717,0.000438703,0.000438703,0.000438703
73
+ 72,9609.66,0.81162,0.49291,1.05602,0.8629,0.88048,0.92047,0.63881,1.10242,0.84109,1.28345,0.000424556,0.000424556,0.000424556
74
+ 73,9732.27,0.79335,0.4587,1.04262,0.88005,0.84118,0.91749,0.64057,1.09589,0.95657,1.30379,0.000410409,0.000410409,0.000410409
75
+ 74,9858.54,0.7941,0.47094,1.05449,0.8524,0.9154,0.91912,0.64815,1.08996,0.72109,1.28996,0.000396262,0.000396262,0.000396262
76
+ 75,9982.31,0.77021,0.45115,1.04251,0.88935,0.86557,0.91991,0.63692,1.13664,0.76016,1.28738,0.000382115,0.000382115,0.000382115
77
+ 76,10105.7,0.76949,0.45393,1.04036,0.88034,0.88673,0.91939,0.64946,1.09739,0.72127,1.28003,0.000367967,0.000367967,0.000367967
78
+ 77,10227.1,0.78177,0.45948,1.04162,0.87803,0.89807,0.92086,0.65161,1.07178,0.73423,1.28876,0.00035382,0.00035382,0.00035382
79
+ 78,10349,0.7847,0.45608,1.05785,0.86016,0.90588,0.92885,0.65984,1.08577,0.768,1.2825,0.000339673,0.000339673,0.000339673
80
+ 79,10470.9,0.76942,0.44571,1.0271,0.88505,0.889,0.91828,0.65918,1.08965,0.74801,1.3285,0.000325526,0.000325526,0.000325526
81
+ 80,10594.4,0.77136,0.44183,1.04185,0.87079,0.89265,0.91827,0.65055,1.09673,0.74753,1.34602,0.000311379,0.000311379,0.000311379
82
+ 81,10717.8,0.75802,0.43403,1.02469,0.88294,0.90037,0.92655,0.65677,1.0774,0.7293,1.31345,0.000297232,0.000297232,0.000297232
83
+ 82,10839.3,0.74156,0.42018,1.02875,0.87562,0.88677,0.92051,0.64891,1.08211,0.77597,1.32237,0.000283085,0.000283085,0.000283085
84
+ 83,10959.5,0.73471,0.41805,1.02116,0.88232,0.86778,0.91926,0.6522,1.08637,0.86445,1.30155,0.000268938,0.000268938,0.000268938
85
+ 84,11079.7,0.71987,0.409,1.01509,0.88429,0.88593,0.9209,0.6574,1.08773,0.75512,1.28833,0.000254791,0.000254791,0.000254791
86
+ 85,11200.4,0.71909,0.41218,1.00306,0.8614,0.89623,0.9109,0.64745,1.11268,0.79358,1.31553,0.000240644,0.000240644,0.000240644
87
+ 86,11319.6,0.72619,0.40787,1.01427,0.86782,0.89315,0.90742,0.64538,1.09118,0.76268,1.33372,0.000226497,0.000226497,0.000226497
88
+ 87,11438.2,0.69971,0.40523,1.00701,0.86759,0.90273,0.91696,0.64322,1.1019,0.75649,1.35643,0.000212349,0.000212349,0.000212349
89
+ 88,11556.5,0.71831,0.41107,1.00241,0.87604,0.88261,0.91376,0.64558,1.09116,0.78148,1.31303,0.000198202,0.000198202,0.000198202
90
+ 89,11674.7,0.69791,0.39686,1.00183,0.88932,0.85623,0.91605,0.64781,1.08128,0.77965,1.33075,0.000184055,0.000184055,0.000184055
91
+ 90,11792.8,0.69288,0.39555,1.01028,0.87076,0.88416,0.91601,0.64474,1.08076,0.77813,1.33604,0.000169908,0.000169908,0.000169908
92
+ 91,11911.1,0.69115,0.38957,1.0041,0.85208,0.90465,0.91776,0.64854,1.1036,0.75637,1.31825,0.000155761,0.000155761,0.000155761
93
+ 92,12031,0.68464,0.37574,1.01142,0.8396,0.90201,0.91529,0.64934,1.09031,0.75525,1.34051,0.000141614,0.000141614,0.000141614
94
+ 93,12151.5,0.65738,0.37003,0.99292,0.86296,0.88754,0.91325,0.64519,1.10286,0.76466,1.33176,0.000127467,0.000127467,0.000127467
95
+ 94,12272,0.65004,0.36349,0.9815,0.87546,0.88021,0.91691,0.64506,1.09599,0.75219,1.35558,0.00011332,0.00011332,0.00011332
96
+ 95,12391.8,0.6357,0.34475,0.9769,0.87537,0.87881,0.91984,0.64351,1.09959,0.78155,1.33473,9.91726e-05,9.91726e-05,9.91726e-05
97
+ 96,12512,0.629,0.33945,0.96706,0.85598,0.89243,0.92039,0.65279,1.09504,0.81158,1.34773,8.50255e-05,8.50255e-05,8.50255e-05
98
+ 97,13588,0.63444,0.34728,0.97651,0.87348,0.87198,0.91999,0.65578,1.08953,0.79978,1.34617,7.08784e-05,7.08784e-05,7.08784e-05
99
+ 98,13704.2,0.60787,0.32403,0.95397,0.86681,0.87999,0.91987,0.65735,1.09657,0.79683,1.33815,5.67313e-05,5.67313e-05,5.67313e-05
100
+ 99,13820.6,0.6164,0.32848,0.96467,0.87382,0.87005,0.9189,0.65159,1.09905,0.80764,1.34652,4.25842e-05,4.25842e-05,4.25842e-05
101
+ 100,13975.9,0.61608,0.32948,0.96133,0.87421,0.87959,0.91895,0.64954,1.09326,0.80139,1.34609,2.84371e-05,2.84371e-05,2.84371e-05
runs/detect/train18/results.png ADDED

Git LFS Details

  • SHA256: 403b048aac38473929cb3593b851c533ec97d6dbd802e17c8eb8db6277569f6a
  • Pointer size: 131 Bytes
  • Size of remote file: 268 kB
runs/detect/train18/train_batch0.jpg ADDED

Git LFS Details

  • SHA256: c105a7d571c1d798a3d4038d3d2e45ec33696b05f7771c20ce857a4d246d866c
  • Pointer size: 131 Bytes
  • Size of remote file: 430 kB
runs/detect/train18/train_batch1.jpg ADDED

Git LFS Details

  • SHA256: 79a9bd3a0221088f72d8a5c9f0b1ae43b069aebce2d2c3b039cc2f85829c0903
  • Pointer size: 131 Bytes
  • Size of remote file: 366 kB
runs/detect/train18/train_batch1440.jpg ADDED

Git LFS Details

  • SHA256: 8c33ef4f205a49b7823f9aef039f99fe0552896f510f79369b11cf24e1d0f5b9
  • Pointer size: 131 Bytes
  • Size of remote file: 372 kB
runs/detect/train18/train_batch1441.jpg ADDED

Git LFS Details

  • SHA256: c857ada565ffb4158ba188c91de8dc23a38a38e03f6dc51d8b182fc390388f63
  • Pointer size: 131 Bytes
  • Size of remote file: 370 kB
runs/detect/train18/train_batch1442.jpg ADDED

Git LFS Details

  • SHA256: 0fb4d6f240c2882ed7b8761adca025ec5b940d1a44c149b52ca17f20085905d7
  • Pointer size: 131 Bytes
  • Size of remote file: 351 kB
runs/detect/train18/train_batch2.jpg ADDED

Git LFS Details

  • SHA256: 3c110ce059c15eaa52b065dc09bc687c41c5875a6cb61a6c699da4317846dec5
  • Pointer size: 131 Bytes
  • Size of remote file: 417 kB
runs/detect/train18/val_batch0_labels.jpg ADDED

Git LFS Details

  • SHA256: c87b2bdb217b3d6f960824ee5742bdda4fcb25f8fcb3286c01fe05a4335d593e
  • Pointer size: 131 Bytes
  • Size of remote file: 468 kB
runs/detect/train18/val_batch0_pred.jpg ADDED

Git LFS Details

  • SHA256: 1bebb2d6458eeba4490de1f37ed709a373ae8be9a3da5f41daffa82d899a6e23
  • Pointer size: 131 Bytes
  • Size of remote file: 552 kB
runs/detect/train18/val_batch1_labels.jpg ADDED

Git LFS Details

  • SHA256: 6c3940c432cb85669428d41a2fae537881b1a8ac28f26e8ca4519b0b5bc1b7de
  • Pointer size: 131 Bytes
  • Size of remote file: 466 kB
runs/detect/train18/val_batch1_pred.jpg ADDED

Git LFS Details

  • SHA256: 808ce95ba12b2d773767074c1a3236fd788c679c97a417b74770c3e1645fb77b
  • Pointer size: 131 Bytes
  • Size of remote file: 546 kB
runs/detect/train18/val_batch2_labels.jpg ADDED

Git LFS Details

  • SHA256: b4abefa8265c6cf4d60ed97a363f00162fef77275b427a09eb3035b17567a6f0
  • Pointer size: 131 Bytes
  • Size of remote file: 253 kB
runs/detect/train18/val_batch2_pred.jpg ADDED

Git LFS Details

  • SHA256: 87e727ce7354830c9b89ed8d7a8d11711ca8bafe7a43e00d30b15dd016ff3b92
  • Pointer size: 131 Bytes
  • Size of remote file: 299 kB
runs/detect/train18/weights/best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f05a31c2d7a8efb823140bd5b7eaea9806cc0e8846868a57d6b78389d622a75d
3
+ size 52007186
runs/detect/train18/weights/last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f01a1c7606ee5f5912f59bfda9f1143dab715f904907effa41fa32dbf7644cac
3
+ size 52007186