EunjiChoi commited on
Commit
d74543e
·
verified ·
1 Parent(s): 6311a3a

Upload 22 files

Browse files

Custom YOLOv11 Model for Thermal Image Object Detection

.gitattributes CHANGED
@@ -33,3 +33,17 @@ 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
+ train-20250428T132704Z-001/train/labels_correlogram.jpg filter=lfs diff=lfs merge=lfs -text
37
+ train-20250428T132704Z-001/train/labels.jpg filter=lfs diff=lfs merge=lfs -text
38
+ train-20250428T132704Z-001/train/P_curve.png filter=lfs diff=lfs merge=lfs -text
39
+ train-20250428T132704Z-001/train/R_curve.png filter=lfs diff=lfs merge=lfs -text
40
+ train-20250428T132704Z-001/train/results.png filter=lfs diff=lfs merge=lfs -text
41
+ train-20250428T132704Z-001/train/train_batch0.jpg filter=lfs diff=lfs merge=lfs -text
42
+ train-20250428T132704Z-001/train/train_batch1.jpg filter=lfs diff=lfs merge=lfs -text
43
+ train-20250428T132704Z-001/train/train_batch2.jpg filter=lfs diff=lfs merge=lfs -text
44
+ train-20250428T132704Z-001/train/val_batch0_labels.jpg filter=lfs diff=lfs merge=lfs -text
45
+ train-20250428T132704Z-001/train/val_batch0_pred.jpg filter=lfs diff=lfs merge=lfs -text
46
+ train-20250428T132704Z-001/train/val_batch1_labels.jpg filter=lfs diff=lfs merge=lfs -text
47
+ train-20250428T132704Z-001/train/val_batch1_pred.jpg filter=lfs diff=lfs merge=lfs -text
48
+ train-20250428T132704Z-001/train/val_batch2_labels.jpg filter=lfs diff=lfs merge=lfs -text
49
+ train-20250428T132704Z-001/train/val_batch2_pred.jpg filter=lfs diff=lfs merge=lfs -text
train-20250428T132704Z-001/train/F1_curve.png ADDED
train-20250428T132704Z-001/train/PR_curve.png ADDED
train-20250428T132704Z-001/train/P_curve.png ADDED

Git LFS Details

  • SHA256: 232db5952a87a5577959b9278bfe3e5c3cb661f5d2ba807e763ce6f8b526f405
  • Pointer size: 131 Bytes
  • Size of remote file: 102 kB
train-20250428T132704Z-001/train/R_curve.png ADDED

Git LFS Details

  • SHA256: 03c269b8e635fc0eb106ed4508a09974a1c1f289187fe83f89cf79707c6a15a2
  • Pointer size: 131 Bytes
  • Size of remote file: 103 kB
train-20250428T132704Z-001/train/args.yaml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ task: detect
2
+ mode: train
3
+ model: yolo11n.pt
4
+ data: /content/gdrive/MyDrive/Colab Notebooks/soundmind/heat_detection-1/data.yaml
5
+ epochs: 100
6
+ time: null
7
+ patience: 10
8
+ batch: 8
9
+ imgsz: 640
10
+ save: true
11
+ save_period: -1
12
+ cache: false
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
+ 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
+ cutmix: 0.0
99
+ copy_paste: 0.0
100
+ copy_paste_mode: flip
101
+ auto_augment: randaugment
102
+ erasing: 0.4
103
+ cfg: null
104
+ tracker: botsort.yaml
105
+ save_dir: runs/detect/train
train-20250428T132704Z-001/train/confusion_matrix.png ADDED
train-20250428T132704Z-001/train/confusion_matrix_normalized.png ADDED
train-20250428T132704Z-001/train/labels.jpg ADDED

Git LFS Details

  • SHA256: 9cdf7a9748405e2ec3717d7558581d1ffb9ef362f4b1370b56da1ae72f339236
  • Pointer size: 131 Bytes
  • Size of remote file: 205 kB
train-20250428T132704Z-001/train/labels_correlogram.jpg ADDED

Git LFS Details

  • SHA256: 59f35066dda44c658827cbab025de1ee5164d2f6e5c79ac3a619d58d6907db59
  • Pointer size: 131 Bytes
  • Size of remote file: 191 kB
train-20250428T132704Z-001/train/results.csv ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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,48.1335,0.97034,1.75563,1.37256,0.39109,0.38083,0.29778,0.12439,1.89296,2.62553,2.06652,0.000663043,0.000663043,0.000663043
3
+ 2,91.1481,1.0075,1.27492,1.3866,0.57289,0.44759,0.45985,0.21485,1.78226,1.92917,1.97496,0.00131655,0.00131655,0.00131655
4
+ 3,134.193,1.08518,1.17229,1.43451,0.29506,0.21237,0.13841,0.05516,2.23984,2.89114,2.42786,0.00195685,0.00195685,0.00195685
5
+ 4,176.801,1.03419,1.04103,1.40114,0.52362,0.37235,0.38095,0.20783,1.79191,1.60685,1.95087,0.0019406,0.0019406,0.0019406
6
+ 5,219.327,0.9927,0.96201,1.3636,0.56702,0.30675,0.35485,0.19162,1.76613,1.78525,1.94666,0.0019208,0.0019208,0.0019208
7
+ 6,261.868,0.93553,0.87257,1.32429,0.58881,0.35361,0.39981,0.21897,1.72899,1.63525,1.88548,0.001901,0.001901,0.001901
8
+ 7,304.394,0.92572,0.82373,1.32054,0.35079,0.25338,0.21482,0.13822,1.81043,2.3652,1.98441,0.0018812,0.0018812,0.0018812
9
+ 8,346.717,0.87365,0.7769,1.28576,0.67701,0.42596,0.4907,0.27006,1.53405,1.46073,1.73079,0.0018614,0.0018614,0.0018614
10
+ 9,389.417,0.87827,0.77837,1.2917,0.6371,0.35676,0.43017,0.25629,1.57835,1.4474,1.75737,0.0018416,0.0018416,0.0018416
11
+ 10,432.172,0.84151,0.74337,1.25383,0.73543,0.34534,0.44956,0.28214,1.57232,1.49645,1.79298,0.0018218,0.0018218,0.0018218
12
+ 11,477.936,0.84331,0.72638,1.25891,0.56117,0.43601,0.46739,0.27337,1.60556,1.34241,1.79273,0.001802,0.001802,0.001802
13
+ 12,524.694,0.80447,0.68785,1.24775,0.57392,0.45338,0.50355,0.29891,1.46446,1.28733,1.62914,0.0017822,0.0017822,0.0017822
14
+ 13,571.257,0.79008,0.66011,1.2306,0.51564,0.51704,0.54058,0.31441,1.40248,1.22154,1.50507,0.0017624,0.0017624,0.0017624
15
+ 14,616.283,0.78648,0.65629,1.22091,0.61413,0.42122,0.46838,0.28647,1.52986,1.35131,1.71052,0.0017426,0.0017426,0.0017426
16
+ 15,659.582,0.75657,0.63192,1.20522,0.66696,0.43601,0.53619,0.31481,1.47404,1.28625,1.61397,0.0017228,0.0017228,0.0017228
17
+ 16,703.139,0.76474,0.63875,1.21524,0.60687,0.39678,0.44958,0.2733,1.59763,1.40335,1.76772,0.001703,0.001703,0.001703
18
+ 17,746.408,0.73437,0.6146,1.18789,0.62093,0.5074,0.54463,0.33543,1.48582,1.1337,1.64735,0.0016832,0.0016832,0.0016832
19
+ 18,790.029,0.75273,0.62695,1.19577,0.51439,0.41865,0.45962,0.29507,1.44333,1.26371,1.62659,0.0016634,0.0016634,0.0016634
20
+ 19,833.584,0.7214,0.59426,1.17775,0.66877,0.41415,0.48672,0.31032,1.4539,1.29447,1.70732,0.0016436,0.0016436,0.0016436
21
+ 20,877.042,0.72348,0.59271,1.18815,0.69424,0.4135,0.54041,0.30765,1.43195,1.2013,1.59542,0.0016238,0.0016238,0.0016238
22
+ 21,920.373,0.73364,0.59986,1.195,0.6943,0.48553,0.58036,0.35976,1.29441,1.14425,1.46413,0.001604,0.001604,0.001604
23
+ 22,963.581,0.69859,0.56152,1.17018,0.73909,0.47846,0.59753,0.35489,1.37702,1.13842,1.53055,0.0015842,0.0015842,0.0015842
24
+ 23,1007.38,0.68148,0.56631,1.1636,0.70797,0.38328,0.49453,0.3057,1.44376,1.31441,1.58983,0.0015644,0.0015644,0.0015644
25
+ 24,1050.45,0.67445,0.53217,1.16402,0.64633,0.45338,0.53371,0.32487,1.39296,1.17671,1.56069,0.0015446,0.0015446,0.0015446
26
+ 25,1093.4,0.67998,0.53418,1.16177,0.67937,0.44694,0.54183,0.33029,1.48409,1.24298,1.66554,0.0015248,0.0015248,0.0015248
27
+ 26,1135.98,0.67295,0.5299,1.15825,0.65007,0.45595,0.53277,0.33591,1.36846,1.23939,1.51824,0.001505,0.001505,0.001505
28
+ 27,1178.58,0.66459,0.54241,1.15384,0.70257,0.40408,0.50676,0.32249,1.42293,1.272,1.59381,0.0014852,0.0014852,0.0014852
29
+ 28,1221.5,0.66174,0.5366,1.1393,0.61294,0.43666,0.51968,0.33408,1.336,1.20157,1.50106,0.0014654,0.0014654,0.0014654
30
+ 29,1264.46,0.66362,0.53969,1.15505,0.65009,0.46559,0.53877,0.32211,1.45128,1.11684,1.56917,0.0014456,0.0014456,0.0014456
31
+ 30,1307.21,0.66615,0.51833,1.14319,0.70845,0.39223,0.48514,0.31488,1.46921,1.22541,1.65636,0.0014258,0.0014258,0.0014258
32
+ 31,1350.56,0.64766,0.51346,1.13397,0.65726,0.47588,0.53736,0.32861,1.38439,1.22608,1.5416,0.001406,0.001406,0.001406
train-20250428T132704Z-001/train/results.png ADDED

Git LFS Details

  • SHA256: cdb94d93cc17979156d8a737077585d6e9eb244ac8001e6817870de7aff9b727
  • Pointer size: 131 Bytes
  • Size of remote file: 332 kB
train-20250428T132704Z-001/train/train_batch0.jpg ADDED

Git LFS Details

  • SHA256: e814230e98a0452eba271232ab42be8d4bd878a2ce1fa11766dd1b73fb331749
  • Pointer size: 131 Bytes
  • Size of remote file: 396 kB
train-20250428T132704Z-001/train/train_batch1.jpg ADDED

Git LFS Details

  • SHA256: f1c91ad8b5591c9cf9eb88115df56164b65ded2fdc9d4247e535f5da49f7872c
  • Pointer size: 131 Bytes
  • Size of remote file: 661 kB
train-20250428T132704Z-001/train/train_batch2.jpg ADDED

Git LFS Details

  • SHA256: fc5e9c43e55cc4dc4e60bf86a560f751ad839dd1b2a62962bc61bfa34409d15c
  • Pointer size: 131 Bytes
  • Size of remote file: 367 kB
train-20250428T132704Z-001/train/val_batch0_labels.jpg ADDED

Git LFS Details

  • SHA256: 95347ec9695064c11f2a7fbc0ac3e8e6f7171a26b5dc6d69af34b883e4999d6a
  • Pointer size: 131 Bytes
  • Size of remote file: 582 kB
train-20250428T132704Z-001/train/val_batch0_pred.jpg ADDED

Git LFS Details

  • SHA256: 3c113647e911e25022be03e7eea5708738b803c1ff6cb027e2e0e430edbc553c
  • Pointer size: 131 Bytes
  • Size of remote file: 588 kB
train-20250428T132704Z-001/train/val_batch1_labels.jpg ADDED

Git LFS Details

  • SHA256: 78b7257028e449bfef74c42c99c8dea921ccd56e0e4eded783df4dd0d1ba3e1a
  • Pointer size: 131 Bytes
  • Size of remote file: 695 kB
train-20250428T132704Z-001/train/val_batch1_pred.jpg ADDED

Git LFS Details

  • SHA256: 9b9f11a3b4cba5e2c7c055346fb5b558c166ce300a0f47afd6f05a0ba44acdf0
  • Pointer size: 131 Bytes
  • Size of remote file: 684 kB
train-20250428T132704Z-001/train/val_batch2_labels.jpg ADDED

Git LFS Details

  • SHA256: 8bc4af04840e0325ebabb59da2a417cf521a750a35473e7735c48fc4fabdc0b3
  • Pointer size: 131 Bytes
  • Size of remote file: 688 kB
train-20250428T132704Z-001/train/val_batch2_pred.jpg ADDED

Git LFS Details

  • SHA256: 89330f4e98ed54de0b259bbcecfc68bbada7d9a21966e6b51af8d251da00ad2e
  • Pointer size: 131 Bytes
  • Size of remote file: 659 kB
train-20250428T132704Z-001/train/weights/best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbe757307530f92f1819a11cfb72cf7bce72fc4e9bce637ea24f60e1073af937
3
+ size 5468371
train-20250428T132704Z-001/train/weights/last.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f24a6421236c22a6168bcbc0aa15691ae858d4d5d35a1cce7ed569297010533
3
+ size 5468371