DrewR commited on
Commit
043226a
·
verified ·
1 Parent(s): 2d116c0

Upload 17 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,14 @@ 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
+ F1_curve[[:space:]](1).png filter=lfs diff=lfs merge=lfs -text
37
+ labels[[:space:]](1).jpg filter=lfs diff=lfs merge=lfs -text
38
+ labels_correlogram[[:space:]](1).jpg filter=lfs diff=lfs merge=lfs -text
39
+ P_curve[[:space:]](1).png filter=lfs diff=lfs merge=lfs -text
40
+ R_curve[[:space:]](1).png filter=lfs diff=lfs merge=lfs -text
41
+ results[[:space:]](1).png filter=lfs diff=lfs merge=lfs -text
42
+ train_batch0[[:space:]](2).jpg filter=lfs diff=lfs merge=lfs -text
43
+ train_batch1[[:space:]](1).jpg filter=lfs diff=lfs merge=lfs -text
44
+ train_batch2[[:space:]](2).jpg filter=lfs diff=lfs merge=lfs -text
45
+ val_batch0_labels[[:space:]](1).jpg filter=lfs diff=lfs merge=lfs -text
46
+ val_batch0_pred[[:space:]](1).jpg filter=lfs diff=lfs merge=lfs -text
F1_curve (1).png ADDED

Git LFS Details

  • SHA256: 11ac77608f1ea921332507d76aef593d569cee97f108a8cfea711787e9c56fbd
  • Pointer size: 131 Bytes
  • Size of remote file: 105 kB
PR_curve (1).png ADDED
P_curve (1).png ADDED

Git LFS Details

  • SHA256: 4df03c190197a45e439b6d6b6181a71066228994e85f5b93a4e26fb15b99fbb2
  • Pointer size: 131 Bytes
  • Size of remote file: 100 kB
R_curve (1).png ADDED

Git LFS Details

  • SHA256: a88bd77d976b2623be49b9b77f46e39af4ca621ee91e4e53fe107caaec63572e
  • Pointer size: 131 Bytes
  • Size of remote file: 105 kB
args (1).yaml ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ task: detect
2
+ mode: train
3
+ model: yolo11n.pt
4
+ data: https://app.roboflow.com/ds/ISAgV2i1M5?key=cWeUdArDHh
5
+ epochs: 200
6
+ time: null
7
+ patience: 50
8
+ batch: -1
9
+ imgsz: 1024
10
+ save: true
11
+ save_period: -1
12
+ cache: null
13
+ device: null
14
+ workers: 8
15
+ project: null
16
+ name: train
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
+ save_hybrid: false
40
+ conf: null
41
+ iou: 0.7
42
+ max_det: 300
43
+ half: false
44
+ dnn: false
45
+ plots: true
46
+ source: null
47
+ vid_stride: 1
48
+ stream_buffer: false
49
+ visualize: false
50
+ augment: false
51
+ agnostic_nms: false
52
+ classes: null
53
+ retina_masks: false
54
+ embed: null
55
+ show: false
56
+ save_frames: false
57
+ save_txt: false
58
+ save_conf: false
59
+ save_crop: false
60
+ show_labels: true
61
+ show_conf: true
62
+ show_boxes: true
63
+ line_width: null
64
+ format: torchscript
65
+ keras: false
66
+ optimize: false
67
+ int8: false
68
+ dynamic: false
69
+ simplify: true
70
+ opset: null
71
+ workspace: null
72
+ nms: false
73
+ lr0: 0.01
74
+ lrf: 0.01
75
+ momentum: 0.937
76
+ weight_decay: 0.0005
77
+ warmup_epochs: 3.0
78
+ warmup_momentum: 0.8
79
+ warmup_bias_lr: 0.1
80
+ box: 7.5
81
+ cls: 0.5
82
+ dfl: 1.5
83
+ pose: 12.0
84
+ kobj: 1.0
85
+ nbs: 64
86
+ hsv_h: 0.015
87
+ hsv_s: 0.7
88
+ hsv_v: 0.4
89
+ degrees: 0.0
90
+ translate: 0.1
91
+ scale: 0.5
92
+ shear: 0.0
93
+ perspective: 0.0
94
+ flipud: 0.0
95
+ fliplr: 0.5
96
+ bgr: 0.0
97
+ mosaic: 1.0
98
+ mixup: 0.0
99
+ copy_paste: 0.0
100
+ copy_paste_mode: flip
101
+ auto_augment: randaugment
102
+ erasing: 0.4
103
+ crop_fraction: 1.0
104
+ cfg: null
105
+ tracker: botsort.yaml
106
+ save_dir: runs/detect/train
confusion_matrix (2).png ADDED
confusion_matrix_normalized (1).png ADDED
events.out.tfevents.1741219489.e970c8fe82c1.3425.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0784a06014c9e2d18943fac9d6f3b6aa93c7272fbd491b4f317be670ca49c69b
3
+ size 354155
labels (1).jpg ADDED

Git LFS Details

  • SHA256: 22a7690ac050dda9f45074a22a1fa35cf935b5d6b4c3c4348e97feabe01545b4
  • Pointer size: 131 Bytes
  • Size of remote file: 136 kB
labels_correlogram (1).jpg ADDED

Git LFS Details

  • SHA256: 7f187f5db4253032c6f1f182a8f20334f1b2d6af4180360e04360edc37d1010a
  • Pointer size: 131 Bytes
  • Size of remote file: 232 kB
results (1).png ADDED

Git LFS Details

  • SHA256: 1ee8cb11782e7a6eaa5fc0938e4ad027297d795c67b30ee652f9b2863119fff3
  • Pointer size: 131 Bytes
  • Size of remote file: 280 kB
results (11).csv ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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,21.8042,2.68613,7.13278,1.67813,0.00395,0.55814,0.02246,0.00662,1.64732,4.87728,1.10964,0.00036,0.00036,0.00036
3
+ 2,31.9095,2.2447,4.3643,1.40803,0.00115,0.16279,0.00381,0.00088,1.95364,5.12895,1.31074,0.000736337,0.000736337,0.000736337
4
+ 3,41.7959,2.22406,3.50448,1.45524,0.00086,0.12209,0.00817,0.00481,1.85243,4.71704,1.19754,0.00110891,0.00110891,0.00110891
5
+ 4,51.4136,2.15022,2.91117,1.43412,0.00379,0.53488,0.08937,0.01411,3.09809,3.32963,1.83127,0.00147772,0.00147772,0.00147772
6
+ 5,61.6478,2.15355,2.54387,1.44205,0.0023,0.32558,0.02141,0.0082,3.39007,4.88239,2.9661,0.00184278,0.00184278,0.00184278
7
+ 6,70.9547,2.19326,2.2305,1.47679,0.00049,0.06977,0.00029,0.00015,4.05463,7.78147,20.1379,0.0019505,0.0019505,0.0019505
8
+ 7,80.3118,2.11965,1.94006,1.46685,0.64619,0.55216,0.58783,0.30935,1.688,1.76557,1.32155,0.0019406,0.0019406,0.0019406
9
+ 8,89.6982,2.149,1.85806,1.50826,0.67689,0.54651,0.58975,0.29366,1.73376,1.9,1.35587,0.0019307,0.0019307,0.0019307
10
+ 9,99.2811,2.14489,1.75809,1.4801,0.71635,0.55795,0.64622,0.31377,1.74859,2.38266,1.38791,0.0019208,0.0019208,0.0019208
11
+ 10,108.768,2.10798,1.71732,1.45708,0.68372,0.54651,0.61918,0.33808,1.696,1.37325,1.33167,0.0019109,0.0019109,0.0019109
12
+ 11,118.276,2.08943,1.6857,1.45112,0.66079,0.62791,0.6369,0.33852,1.60464,4.86621,1.28018,0.001901,0.001901,0.001901
13
+ 12,127.826,2.05283,1.62339,1.42931,0.50202,0.44186,0.39689,0.17007,2.00112,4.45298,1.4969,0.0018911,0.0018911,0.0018911
14
+ 13,137.21,2.04666,1.58663,1.42316,0.57948,0.48071,0.48135,0.14922,2.51608,1.92658,1.79598,0.0018812,0.0018812,0.0018812
15
+ 14,146.741,2.02955,1.56303,1.42621,0.54638,0.55814,0.51295,0.16341,2.54022,2.76744,1.73592,0.0018713,0.0018713,0.0018713
16
+ 15,156.283,1.9622,1.54559,1.37839,0.68501,0.5407,0.62292,0.35168,1.52764,1.70435,1.27035,0.0018614,0.0018614,0.0018614
17
+ 16,165.687,1.96871,1.57953,1.38875,0.66317,0.53802,0.54273,0.23243,1.94816,2.03082,1.45627,0.0018515,0.0018515,0.0018515
18
+ 17,175.182,1.93051,1.52566,1.38182,0.7712,0.60752,0.71965,0.36725,1.57861,1.81711,1.27404,0.0018416,0.0018416,0.0018416
19
+ 18,184.665,1.96373,1.53147,1.40595,0.73952,0.78488,0.80893,0.49622,1.34842,1.10914,1.18005,0.0018317,0.0018317,0.0018317
20
+ 19,194.086,1.93281,1.55113,1.35975,0.74822,0.74419,0.78444,0.42941,1.52242,1.28611,1.23424,0.0018218,0.0018218,0.0018218
21
+ 20,203.727,1.92548,1.47813,1.38011,0.75524,0.59302,0.67757,0.3114,1.8374,1.30393,1.38791,0.0018119,0.0018119,0.0018119
22
+ 21,213.139,1.86874,1.45966,1.34608,0.73385,0.58721,0.61862,0.23589,2.27996,1.37781,1.62019,0.001802,0.001802,0.001802
23
+ 22,222.53,1.86481,1.45778,1.3451,0.74545,0.72093,0.75347,0.44105,1.38323,1.88914,1.17591,0.0017921,0.0017921,0.0017921
24
+ 23,231.916,1.87454,1.46126,1.33291,0.80489,0.6686,0.77434,0.43657,1.49667,1.08894,1.209,0.0017822,0.0017822,0.0017822
25
+ 24,241.419,1.88297,1.46098,1.36309,0.74672,0.68564,0.77698,0.46488,1.43874,1.13656,1.21787,0.0017723,0.0017723,0.0017723
26
+ 25,250.986,1.8711,1.40162,1.33146,0.77663,0.75581,0.81369,0.49117,1.39281,1.00828,1.1855,0.0017624,0.0017624,0.0017624
27
+ 26,260.528,1.83646,1.39426,1.31994,0.8052,0.7093,0.80794,0.46167,1.45835,1.0474,1.21952,0.0017525,0.0017525,0.0017525
28
+ 27,269.888,1.84443,1.39349,1.31641,0.72711,0.72809,0.75621,0.43887,1.53791,1.10312,1.23179,0.0017426,0.0017426,0.0017426
29
+ 28,279.383,1.82617,1.41095,1.32934,0.77131,0.62791,0.69297,0.34495,1.71598,1.24533,1.32974,0.0017327,0.0017327,0.0017327
30
+ 29,288.799,1.84983,1.3874,1.32087,0.74363,0.7093,0.74454,0.45102,1.46927,1.10126,1.22045,0.0017228,0.0017228,0.0017228
31
+ 30,298.272,1.84633,1.38724,1.33303,0.75967,0.71674,0.77778,0.46314,1.40554,1.05505,1.18028,0.0017129,0.0017129,0.0017129
32
+ 31,307.764,1.80095,1.35909,1.29439,0.73444,0.61628,0.68279,0.34841,1.74688,1.19532,1.32122,0.001703,0.001703,0.001703
33
+ 32,317.388,1.78412,1.38484,1.28792,0.79656,0.64535,0.73613,0.42797,1.54307,1.76373,1.21422,0.0016931,0.0016931,0.0016931
34
+ 33,327.014,1.80159,1.35707,1.30362,0.7603,0.77907,0.80064,0.53086,1.26246,0.95504,1.13164,0.0016832,0.0016832,0.0016832
35
+ 34,336.606,1.78298,1.36058,1.28845,0.71718,0.72674,0.76229,0.46141,1.41736,1.03915,1.20697,0.0016733,0.0016733,0.0016733
36
+ 35,345.995,1.76464,1.35842,1.27953,0.72788,0.74648,0.81295,0.51946,1.34709,0.99639,1.14686,0.0016634,0.0016634,0.0016634
37
+ 36,355.365,1.76445,1.34207,1.30053,0.71096,0.75793,0.80266,0.50752,1.33391,0.96284,1.17268,0.0016535,0.0016535,0.0016535
38
+ 37,364.868,1.77816,1.33689,1.29672,0.76414,0.75346,0.78754,0.50577,1.27438,0.9913,1.13301,0.0016436,0.0016436,0.0016436
39
+ 38,374.184,1.79742,1.37097,1.29782,0.68867,0.60444,0.65021,0.36445,1.63937,1.35028,1.3009,0.0016337,0.0016337,0.0016337
40
+ 39,383.501,1.74761,1.32147,1.28139,0.74969,0.7093,0.75805,0.46184,1.41117,1.06982,1.19516,0.0016238,0.0016238,0.0016238
41
+ 40,393.009,1.74635,1.3158,1.28004,0.76821,0.63587,0.72325,0.35543,1.90394,1.09579,1.40343,0.0016139,0.0016139,0.0016139
42
+ 41,402.457,1.75783,1.32787,1.2809,0.74496,0.76744,0.81177,0.48332,1.50425,0.97394,1.21417,0.001604,0.001604,0.001604
43
+ 42,411.711,1.7746,1.31235,1.27609,0.74223,0.73662,0.78823,0.41854,1.5652,1.08539,1.2274,0.0015941,0.0015941,0.0015941
44
+ 43,421.338,1.73584,1.31109,1.25618,0.7801,0.73256,0.81031,0.44356,1.50224,1.00995,1.22002,0.0015842,0.0015842,0.0015842
45
+ 44,430.728,1.72584,1.29105,1.2845,0.82161,0.73256,0.82559,0.51066,1.31318,0.93018,1.16832,0.0015743,0.0015743,0.0015743
46
+ 45,440.175,1.7426,1.29561,1.26453,0.82463,0.73813,0.81824,0.5022,1.34704,0.9502,1.16416,0.0015644,0.0015644,0.0015644
47
+ 46,449.564,1.72013,1.29011,1.26228,0.75833,0.76744,0.82423,0.49711,1.35254,0.96309,1.14964,0.0015545,0.0015545,0.0015545
48
+ 47,459.042,1.73282,1.33109,1.27787,0.79578,0.76163,0.81622,0.5175,1.26604,0.91317,1.13188,0.0015446,0.0015446,0.0015446
49
+ 48,468.487,1.74664,1.30206,1.28678,0.81839,0.7336,0.79819,0.50317,1.31868,0.96662,1.16128,0.0015347,0.0015347,0.0015347
50
+ 49,477.953,1.72109,1.31109,1.26596,0.74689,0.69767,0.79259,0.47452,1.34754,1.00926,1.16686,0.0015248,0.0015248,0.0015248
51
+ 50,487.441,1.71715,1.27413,1.25464,0.78769,0.73256,0.77506,0.41097,1.58538,1.01793,1.24239,0.0015149,0.0015149,0.0015149
52
+ 51,496.9,1.7252,1.28537,1.26061,0.68999,0.69877,0.70103,0.39478,1.50481,1.15233,1.21453,0.001505,0.001505,0.001505
53
+ 52,506.199,1.70508,1.27402,1.25436,0.7993,0.7093,0.80251,0.46132,1.4376,0.98927,1.18184,0.0014951,0.0014951,0.0014951
54
+ 53,515.861,1.71116,1.29013,1.25584,0.83718,0.68754,0.8004,0.49446,1.32376,0.98668,1.16613,0.0014852,0.0014852,0.0014852
55
+ 54,525.419,1.69204,1.25949,1.24676,0.77665,0.75,0.81961,0.50891,1.33383,0.96201,1.15165,0.0014753,0.0014753,0.0014753
56
+ 55,534.793,1.68608,1.24879,1.26234,0.76834,0.72674,0.79999,0.48569,1.41785,0.97769,1.18013,0.0014654,0.0014654,0.0014654
57
+ 56,544.231,1.69979,1.30203,1.25189,0.83724,0.71778,0.80529,0.51549,1.35868,0.97023,1.16532,0.0014555,0.0014555,0.0014555
58
+ 57,553.562,1.71198,1.27118,1.26722,0.79392,0.69435,0.77505,0.43739,1.58319,1.02425,1.24974,0.0014456,0.0014456,0.0014456
59
+ 58,562.923,1.63596,1.20404,1.22872,0.74027,0.7907,0.8199,0.52659,1.28293,0.94945,1.13183,0.0014357,0.0014357,0.0014357
60
+ 59,572.284,1.6587,1.2025,1.23808,0.69441,0.79268,0.80032,0.48654,1.29964,1.0058,1.13617,0.0014258,0.0014258,0.0014258
61
+ 60,581.782,1.64367,1.19936,1.23769,0.79476,0.77907,0.84507,0.52476,1.29845,0.90353,1.13849,0.0014159,0.0014159,0.0014159
62
+ 61,591.144,1.62366,1.19473,1.20296,0.75935,0.79651,0.84632,0.53044,1.32453,0.90977,1.15914,0.001406,0.001406,0.001406
63
+ 62,600.527,1.61481,1.21671,1.21809,0.77458,0.76744,0.83269,0.53016,1.30352,0.90547,1.12943,0.0013961,0.0013961,0.0013961
64
+ 63,609.986,1.63296,1.19822,1.23155,0.78221,0.75,0.81913,0.51551,1.33861,0.91772,1.14844,0.0013862,0.0013862,0.0013862
65
+ 64,619.512,1.65254,1.27333,1.2377,0.79248,0.75487,0.81512,0.47861,1.42851,0.95684,1.20047,0.0013763,0.0013763,0.0013763
66
+ 65,628.998,1.62323,1.20219,1.22878,0.78013,0.71512,0.78691,0.48572,1.40119,1.03543,1.18003,0.0013664,0.0013664,0.0013664
67
+ 66,638.416,1.6663,1.23354,1.24264,0.74636,0.78488,0.79116,0.47662,1.39018,1.00711,1.17103,0.0013565,0.0013565,0.0013565
68
+ 67,647.809,1.65702,1.21385,1.2242,0.70147,0.68306,0.77522,0.48346,1.30343,1.13201,1.14213,0.0013466,0.0013466,0.0013466
69
+ 68,657.246,1.65103,1.23349,1.23118,0.76694,0.70788,0.79064,0.46515,1.42689,1.12537,1.19635,0.0013367,0.0013367,0.0013367
70
+ 69,666.835,1.58862,1.18562,1.20296,0.74737,0.77397,0.81031,0.48793,1.4215,0.97606,1.20219,0.0013268,0.0013268,0.0013268
71
+ 70,676.466,1.61212,1.19613,1.21084,0.80217,0.72093,0.81789,0.48255,1.42777,0.92226,1.18369,0.0013169,0.0013169,0.0013169
72
+ 71,686.082,1.65592,1.22091,1.22843,0.77659,0.77326,0.84859,0.54868,1.22874,0.85705,1.11705,0.001307,0.001307,0.001307
73
+ 72,695.456,1.62711,1.17621,1.21606,0.81268,0.69186,0.78459,0.43629,1.4536,1.05389,1.19272,0.0012971,0.0012971,0.0012971
74
+ 73,704.708,1.62414,1.20838,1.22126,0.81611,0.72674,0.83015,0.51402,1.3503,0.94829,1.16481,0.0012872,0.0012872,0.0012872
75
+ 74,714.031,1.60678,1.17521,1.21315,0.78448,0.78488,0.84436,0.51238,1.33372,0.83706,1.15409,0.0012773,0.0012773,0.0012773
76
+ 75,723.581,1.58886,1.1461,1.20958,0.78518,0.8075,0.84954,0.54894,1.29494,0.86166,1.13684,0.0012674,0.0012674,0.0012674
77
+ 76,733.103,1.60983,1.18355,1.20923,0.85623,0.72714,0.85098,0.51783,1.37813,0.86143,1.1608,0.0012575,0.0012575,0.0012575
78
+ 77,742.658,1.59328,1.16079,1.20991,0.80285,0.73256,0.81223,0.48848,1.36613,0.93662,1.16533,0.0012476,0.0012476,0.0012476
79
+ 78,752.133,1.60384,1.17615,1.2109,0.7452,0.74419,0.80533,0.48055,1.40514,0.93466,1.17567,0.0012377,0.0012377,0.0012377
80
+ 79,761.428,1.57849,1.15648,1.20628,0.7893,0.74052,0.82752,0.5385,1.23724,0.88617,1.10586,0.0012278,0.0012278,0.0012278
81
+ 80,770.911,1.55969,1.15828,1.1828,0.76048,0.74419,0.81078,0.51656,1.31993,0.89101,1.14171,0.0012179,0.0012179,0.0012179
82
+ 81,780.39,1.59174,1.16467,1.2136,0.79116,0.68279,0.76359,0.42093,1.6512,0.97128,1.28062,0.001208,0.001208,0.001208
83
+ 82,789.808,1.55125,1.13667,1.18279,0.78147,0.68605,0.78146,0.46275,1.41699,0.97832,1.17272,0.0011981,0.0011981,0.0011981
84
+ 83,799.209,1.57526,1.11755,1.19578,0.73568,0.79651,0.80021,0.47644,1.38782,0.99632,1.17654,0.0011882,0.0011882,0.0011882
85
+ 84,808.624,1.53713,1.1077,1.17929,0.77316,0.76163,0.81633,0.51313,1.28443,0.88654,1.13267,0.0011783,0.0011783,0.0011783
86
+ 85,818.054,1.55377,1.12004,1.18565,0.79088,0.73256,0.81125,0.51525,1.30913,0.9288,1.1307,0.0011684,0.0011684,0.0011684
87
+ 86,827.614,1.5683,1.14809,1.18416,0.84448,0.69453,0.80061,0.49433,1.34607,0.96681,1.1564,0.0011585,0.0011585,0.0011585
88
+ 87,837.104,1.52211,1.1058,1.17816,0.78799,0.73471,0.82439,0.51871,1.31074,0.89799,1.14875,0.0011486,0.0011486,0.0011486
89
+ 88,846.568,1.54667,1.11867,1.18494,0.74615,0.73837,0.80786,0.5017,1.31317,0.90167,1.14676,0.0011387,0.0011387,0.0011387
90
+ 89,856.047,1.53932,1.1079,1.18404,0.81805,0.73256,0.83038,0.52499,1.29396,0.89566,1.13795,0.0011288,0.0011288,0.0011288
91
+ 90,865.478,1.55373,1.11876,1.18689,0.79008,0.744,0.81666,0.51053,1.27499,0.90318,1.12781,0.0011189,0.0011189,0.0011189
92
+ 91,874.816,1.54483,1.10155,1.18997,0.7985,0.74419,0.82647,0.53747,1.21673,0.87847,1.11365,0.001109,0.001109,0.001109
93
+ 92,884.334,1.54361,1.09314,1.17242,0.79968,0.75,0.82077,0.51563,1.31526,0.92785,1.15456,0.0010991,0.0010991,0.0010991
94
+ 93,893.59,1.5361,1.07683,1.1639,0.8177,0.73018,0.81705,0.52507,1.26718,0.89814,1.11521,0.0010892,0.0010892,0.0010892
95
+ 94,903.032,1.53882,1.15403,1.17476,0.75411,0.80233,0.82688,0.49684,1.36848,0.9378,1.17099,0.0010793,0.0010793,0.0010793
96
+ 95,912.565,1.528,1.1098,1.1753,0.75665,0.79539,0.82493,0.52697,1.2526,0.86479,1.12147,0.0010694,0.0010694,0.0010694
97
+ 96,921.907,1.52762,1.11579,1.16344,0.78859,0.77907,0.82446,0.51949,1.26512,0.85999,1.15045,0.0010595,0.0010595,0.0010595
98
+ 97,931.208,1.49904,1.07858,1.16456,0.82696,0.7093,0.82201,0.52631,1.26624,0.85626,1.12286,0.0010496,0.0010496,0.0010496
99
+ 98,940.844,1.51464,1.1157,1.15805,0.79003,0.76565,0.81411,0.501,1.4072,0.90918,1.17683,0.0010397,0.0010397,0.0010397
100
+ 99,950.415,1.51813,1.08244,1.16911,0.76177,0.78488,0.83032,0.52332,1.29479,0.85649,1.1404,0.0010298,0.0010298,0.0010298
101
+ 100,959.825,1.5178,1.09202,1.1689,0.79541,0.73256,0.8265,0.53134,1.27782,0.85342,1.12155,0.0010199,0.0010199,0.0010199
102
+ 101,969.201,1.51709,1.08659,1.17191,0.80024,0.76744,0.83512,0.52189,1.28354,0.85206,1.13311,0.00101,0.00101,0.00101
103
+ 102,978.607,1.51525,1.08781,1.1748,0.70391,0.82558,0.80004,0.49029,1.26625,0.93897,1.12966,0.0010001,0.0010001,0.0010001
104
+ 103,988.21,1.4839,1.04662,1.15464,0.76698,0.78488,0.81993,0.51245,1.25476,0.87547,1.1277,0.0009902,0.0009902,0.0009902
105
+ 104,997.703,1.49881,1.06674,1.18696,0.81485,0.72093,0.82568,0.51165,1.34143,0.89205,1.15989,0.0009803,0.0009803,0.0009803
106
+ 105,1007.2,1.48847,1.03376,1.14445,0.8011,0.76163,0.81019,0.50173,1.33688,0.90182,1.14812,0.0009704,0.0009704,0.0009704
107
+ 106,1016.67,1.49649,1.0609,1.1601,0.78308,0.76744,0.80568,0.52149,1.22349,0.88248,1.11446,0.0009605,0.0009605,0.0009605
108
+ 107,1026.02,1.527,1.08961,1.16911,0.78259,0.77434,0.81394,0.52437,1.2944,0.89236,1.14359,0.0009506,0.0009506,0.0009506
109
+ 108,1035.56,1.50097,1.05361,1.16551,0.76424,0.79651,0.82759,0.52809,1.24263,0.86048,1.1171,0.0009407,0.0009407,0.0009407
110
+ 109,1044.87,1.47739,1.06161,1.15164,0.82197,0.75162,0.8258,0.50895,1.32507,0.87037,1.13756,0.0009308,0.0009308,0.0009308
111
+ 110,1054.16,1.48292,1.03205,1.1548,0.76409,0.75581,0.82251,0.51408,1.28722,0.88024,1.13707,0.0009209,0.0009209,0.0009209
112
+ 111,1063.56,1.46827,1.03131,1.14662,0.78213,0.75138,0.83259,0.51478,1.29498,0.86445,1.13028,0.000911,0.000911,0.000911
113
+ 112,1073,1.43097,0.99662,1.14107,0.77326,0.7907,0.83008,0.52182,1.27107,0.86793,1.13128,0.0009011,0.0009011,0.0009011
114
+ 113,1082.51,1.44886,1.02308,1.14027,0.80883,0.76257,0.82832,0.50209,1.31495,0.87236,1.14214,0.0008912,0.0008912,0.0008912
115
+ 114,1091.88,1.4486,0.98997,1.14389,0.79951,0.73837,0.80599,0.487,1.40495,0.87401,1.17972,0.0008813,0.0008813,0.0008813
116
+ 115,1101.41,1.45627,1.02098,1.14202,0.8007,0.73837,0.80851,0.52702,1.25138,0.84764,1.12936,0.0008714,0.0008714,0.0008714
117
+ 116,1110.81,1.45906,1.0054,1.13905,0.8268,0.72161,0.83688,0.53499,1.2485,0.84172,1.11633,0.0008615,0.0008615,0.0008615
118
+ 117,1120.28,1.47788,1.00938,1.16169,0.75396,0.76612,0.81862,0.48409,1.35917,0.89757,1.17551,0.0008516,0.0008516,0.0008516
119
+ 118,1129.76,1.42623,0.99762,1.14104,0.79605,0.74888,0.81411,0.50922,1.30698,0.88147,1.14221,0.0008417,0.0008417,0.0008417
120
+ 119,1139.22,1.45268,0.98636,1.15775,0.76917,0.79433,0.82678,0.52727,1.24889,0.86282,1.11923,0.0008318,0.0008318,0.0008318
121
+ 120,1148.7,1.45818,1.02089,1.14714,0.8106,0.7093,0.81936,0.52382,1.25364,0.86326,1.11863,0.0008219,0.0008219,0.0008219
122
+ 121,1158.01,1.40977,0.99188,1.11068,0.81021,0.73837,0.81648,0.51239,1.25641,0.85736,1.13689,0.000812,0.000812,0.000812
123
+ 122,1167.51,1.42089,0.99018,1.13241,0.80027,0.74543,0.82394,0.50751,1.31874,0.87156,1.15722,0.0008021,0.0008021,0.0008021
124
+ 123,1176.84,1.44704,1.01773,1.12908,0.74201,0.81938,0.83431,0.52786,1.27189,0.84138,1.13039,0.0007922,0.0007922,0.0007922
125
+ 124,1186.32,1.4413,0.98835,1.13716,0.79711,0.75378,0.81795,0.5156,1.31141,0.93984,1.14067,0.0007823,0.0007823,0.0007823
126
+ 125,1195.77,1.42885,0.97567,1.13067,0.7797,0.76135,0.81448,0.50243,1.30038,0.86925,1.14385,0.0007724,0.0007724,0.0007724
train_batch0 (2).jpg ADDED

Git LFS Details

  • SHA256: 85879db46ae616c26257d484e008e855d790853d5ab735e569a54d2c05b66c36
  • Pointer size: 131 Bytes
  • Size of remote file: 795 kB
train_batch1 (1).jpg ADDED

Git LFS Details

  • SHA256: 06ab7e9a95deffa57756fce9d2d50b187dce0512840e57cf2cd81ff171355533
  • Pointer size: 131 Bytes
  • Size of remote file: 768 kB
train_batch2 (2).jpg ADDED

Git LFS Details

  • SHA256: 1ce97a77ca99df258dcbea2ae71caaa7e5d07a36648af0f6edcde1a44e8d69ef
  • Pointer size: 131 Bytes
  • Size of remote file: 777 kB
val_batch0_labels (1).jpg ADDED

Git LFS Details

  • SHA256: 1ac8c21a5df6cdf884784b27ba063fd1e8e65e42cde1012be09ea9534471c005
  • Pointer size: 131 Bytes
  • Size of remote file: 881 kB
val_batch0_pred (1).jpg ADDED

Git LFS Details

  • SHA256: ab7cc0951456a62258bd427b7428a7449501024fb5d4aceaf142e163076d3c46
  • Pointer size: 131 Bytes
  • Size of remote file: 902 kB