Upload 4 files
Browse files- config_tree.log +139 -0
- epoch_019.ckpt +3 -0
- metrics.csv +42 -0
- tags.log +1 -0
config_tree.log
ADDED
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CONFIG
|
2 |
+
βββ data
|
3 |
+
β βββ _target_: src.data.dir_datamodule.DirDataModule
|
4 |
+
β data_dir: /media/gpu0/data/lukas/magistras/data/gears/
|
5 |
+
β train_subdir: train/
|
6 |
+
β val_subdir: val/
|
7 |
+
β test_subdir: test/
|
8 |
+
β image_subdir: images/
|
9 |
+
β label_subdir: labels/
|
10 |
+
β batch_size: 32
|
11 |
+
β num_workers: 10
|
12 |
+
β pin_memory: false
|
13 |
+
β preprocessor:
|
14 |
+
β _target_: src.data.components.tile_processor.TilingProcessor
|
15 |
+
β tile_width: 224
|
16 |
+
β tile_height: 224
|
17 |
+
β min_defective_area: 0.01
|
18 |
+
β overlap: 2
|
19 |
+
β step_size: 10
|
20 |
+
β iterate_over_defective_areas: false
|
21 |
+
β save_every_second_good_tile: true
|
22 |
+
β
|
23 |
+
βββ model
|
24 |
+
β βββ _target_: src.models.training_module.TrainingLitModule
|
25 |
+
β optimizer:
|
26 |
+
β _target_: torch.optim.Adam
|
27 |
+
β _partial_: true
|
28 |
+
β lr: 0.0019960425587510337
|
29 |
+
β weight_decay: 0.0
|
30 |
+
β scheduler:
|
31 |
+
β _target_: torch.optim.lr_scheduler.ReduceLROnPlateau
|
32 |
+
β _partial_: true
|
33 |
+
β mode: min
|
34 |
+
β factor: 0.1
|
35 |
+
β patience: 10
|
36 |
+
β net:
|
37 |
+
β _target_: src.models.components.cnn_cam_multihead.CNNCAMMultihead
|
38 |
+
β backbone: mobilenet_v3_large
|
39 |
+
β multi_head: false
|
40 |
+
β return_nodes:
|
41 |
+
β features.16: layerout
|
42 |
+
β weights: IMAGENET1K_V1
|
43 |
+
β compile: false
|
44 |
+
β
|
45 |
+
βββ callbacks
|
46 |
+
β βββ model_checkpoint:
|
47 |
+
β _target_: lightning.pytorch.callbacks.ModelCheckpoint
|
48 |
+
β dirpath: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/train/multiruns/2024-03-12_19-35-23/0/checkpoints
|
49 |
+
β filename: epoch_{epoch:03d}
|
50 |
+
β monitor: val/acc
|
51 |
+
β verbose: false
|
52 |
+
β save_last: true
|
53 |
+
β save_top_k: 1
|
54 |
+
β mode: max
|
55 |
+
β auto_insert_metric_name: false
|
56 |
+
β save_weights_only: false
|
57 |
+
β every_n_train_steps: null
|
58 |
+
β train_time_interval: null
|
59 |
+
β every_n_epochs: null
|
60 |
+
β save_on_train_epoch_end: null
|
61 |
+
β early_stopping:
|
62 |
+
β _target_: lightning.pytorch.callbacks.EarlyStopping
|
63 |
+
β monitor: val/acc
|
64 |
+
β min_delta: 0.0
|
65 |
+
β patience: 100
|
66 |
+
β verbose: false
|
67 |
+
β mode: max
|
68 |
+
β strict: true
|
69 |
+
β check_finite: true
|
70 |
+
β stopping_threshold: null
|
71 |
+
β divergence_threshold: null
|
72 |
+
β check_on_train_epoch_end: null
|
73 |
+
β model_summary:
|
74 |
+
β _target_: lightning.pytorch.callbacks.RichModelSummary
|
75 |
+
β max_depth: -1
|
76 |
+
β rich_progress_bar:
|
77 |
+
β _target_: lightning.pytorch.callbacks.RichProgressBar
|
78 |
+
β
|
79 |
+
βββ logger
|
80 |
+
β βββ csv:
|
81 |
+
β _target_: lightning.pytorch.loggers.csv_logs.CSVLogger
|
82 |
+
β save_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/train/multiruns/2024-03-12_19-35-23/0
|
83 |
+
β name: csv/
|
84 |
+
β prefix: ''
|
85 |
+
β wandb:
|
86 |
+
β _target_: lightning.pytorch.loggers.wandb.WandbLogger
|
87 |
+
β save_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/train/multiruns/2024-03-12_19-35-23/0
|
88 |
+
β offline: false
|
89 |
+
β id: null
|
90 |
+
β anonymous: null
|
91 |
+
β project: DeepVisionXplain
|
92 |
+
β log_model: false
|
93 |
+
β prefix: ''
|
94 |
+
β entity: team_deepvisionxplain
|
95 |
+
β group: gears
|
96 |
+
β tags:
|
97 |
+
β - gears
|
98 |
+
β - mobilenet_v3_large
|
99 |
+
β - full
|
100 |
+
β job_type: ''
|
101 |
+
β aim:
|
102 |
+
β experiment: mobilenet_v3_large_full_gears
|
103 |
+
β
|
104 |
+
βββ trainer
|
105 |
+
β βββ _target_: lightning.pytorch.trainer.Trainer
|
106 |
+
β default_root_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/train/multiruns/2024-03-12_19-35-23/0
|
107 |
+
β min_epochs: 10
|
108 |
+
β max_epochs: 20
|
109 |
+
β accelerator: gpu
|
110 |
+
β devices: 1
|
111 |
+
β check_val_every_n_epoch: 1
|
112 |
+
β deterministic: false
|
113 |
+
β
|
114 |
+
βββ paths
|
115 |
+
β βββ root_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain
|
116 |
+
β data_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/data/
|
117 |
+
β log_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/
|
118 |
+
β output_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain/logs/train/multiruns/2024-03-12_19-35-23/0
|
119 |
+
β work_dir: /media/gpu0/data/lukas/magistras/DeepVisionXplain
|
120 |
+
β
|
121 |
+
βββ extras
|
122 |
+
β βββ ignore_warnings: false
|
123 |
+
β enforce_tags: true
|
124 |
+
β print_config: true
|
125 |
+
β
|
126 |
+
βββ task_name
|
127 |
+
β βββ train
|
128 |
+
βββ tags
|
129 |
+
β βββ ['gears', 'mobilenet_v3_large', 'full']
|
130 |
+
βββ train
|
131 |
+
β βββ True
|
132 |
+
βββ test
|
133 |
+
β βββ True
|
134 |
+
βββ ckpt_path
|
135 |
+
β βββ None
|
136 |
+
βββ seed
|
137 |
+
β βββ 12345
|
138 |
+
βββ optimized_metric
|
139 |
+
βββ val/acc_best
|
epoch_019.ckpt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:835ccba881716d46f0b3f68d1e732db2678986eb6047dcec0b50342281293393
|
3 |
+
size 36217914
|
metrics.csv
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
epoch,step,test/acc,test/loss,train/acc,train/loss,val/acc,val/acc_best,val/loss
|
2 |
+
0,1432,,,,,0.689308762550354,0.689308762550354,1.0626293420791626
|
3 |
+
0,1432,,,0.8156080842018127,0.41418713331222534,,,
|
4 |
+
1,2865,,,,,0.8494930863380432,0.8494930863380432,0.4927027225494385
|
5 |
+
1,2865,,,0.8607572913169861,0.32859382033348083,,,
|
6 |
+
2,4298,,,,,0.8088479042053223,0.8494930863380432,0.4017987549304962
|
7 |
+
2,4298,,,0.8886756300926208,0.281351774930954,,,
|
8 |
+
3,5731,,,,,0.9061751365661621,0.9061751365661621,0.26814407110214233
|
9 |
+
3,5731,,,0.899603009223938,0.25610554218292236,,,
|
10 |
+
4,7164,,,,,0.804423987865448,0.9061751365661621,0.5351445078849792
|
11 |
+
4,7164,,,0.9037035703659058,0.24606001377105713,,,
|
12 |
+
5,8597,,,,,0.8645161390304565,0.9061751365661621,0.41983407735824585
|
13 |
+
5,8597,,,0.9089382290840149,0.23467086255550385,,,
|
14 |
+
6,10030,,,,,0.9231336116790771,0.9231336116790771,0.2093438059091568
|
15 |
+
6,10030,,,0.9119917750358582,0.23023216426372528,,,
|
16 |
+
7,11463,,,,,0.9135484099388123,0.9231336116790771,0.22596049308776855
|
17 |
+
7,11463,,,0.9141947031021118,0.2270173877477646,,,
|
18 |
+
8,12896,,,,,0.9129953980445862,0.9231336116790771,0.23135623335838318
|
19 |
+
8,12896,,,0.9162667989730835,0.22130617499351501,,,
|
20 |
+
9,14329,,,,,0.9172350168228149,0.9231336116790771,0.21964974701404572
|
21 |
+
9,14329,,,0.9200619459152222,0.2124117612838745,,,
|
22 |
+
10,15762,,,,,0.9059907793998718,0.9231336116790771,0.24295571446418762
|
23 |
+
10,15762,,,0.9217632412910461,0.20695637166500092,,,
|
24 |
+
11,17195,,,,,0.9278340935707092,0.9278340935707092,0.1981792151927948
|
25 |
+
11,17195,,,0.9213269948959351,0.204759418964386,,,
|
26 |
+
12,18628,,,,,0.9258986115455627,0.9278340935707092,0.2056065946817398
|
27 |
+
12,18628,,,0.9246423244476318,0.19857534766197205,,,
|
28 |
+
13,20061,,,,,0.9169585108757019,0.9278340935707092,0.22689957916736603
|
29 |
+
13,20061,,,0.9249694347381592,0.1970287263393402,,,
|
30 |
+
14,21494,,,,,0.9340091943740845,0.9340091943740845,0.17880168557167053
|
31 |
+
14,21494,,,0.9257328510284424,0.1948595494031906,,,
|
32 |
+
15,22927,,,,,0.9307833909988403,0.9340091943740845,0.18673640489578247
|
33 |
+
15,22927,,,0.9276740550994873,0.18949788808822632,,,
|
34 |
+
16,24360,,,,,0.9311520457267761,0.9340091943740845,0.20535410940647125
|
35 |
+
16,24360,,,0.9275867938995361,0.18899109959602356,,,
|
36 |
+
17,25793,,,,,0.9331797361373901,0.9340091943740845,0.1905432939529419
|
37 |
+
17,25793,,,0.9298115372657776,0.18550479412078857,,,
|
38 |
+
18,27226,,,,,0.9317050576210022,0.9340091943740845,0.17809531092643738
|
39 |
+
18,27226,,,0.9287428259849548,0.18440943956375122,,,
|
40 |
+
19,28659,,,,,0.9358525276184082,0.9358525276184082,0.21744316816329956
|
41 |
+
19,28659,,,0.9301387071609497,0.1819416731595993,,,
|
42 |
+
20,28660,0.9332706928253174,0.21472372114658356,,,,,
|
tags.log
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
['gears', 'mobilenet_v3_large', 'full']
|