lus105 commited on
Commit
d2112d2
Β·
verified Β·
1 Parent(s): e284dde

Upload 4 files

Browse files
Files changed (4) hide show
  1. config_tree.log +139 -0
  2. epoch_019.ckpt +3 -0
  3. metrics.csv +42 -0
  4. 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/pcb/
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: 10
19
+ β”‚ step_size: 10
20
+ β”‚ iterate_over_defective_areas: true
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: efficientnet_v2_s
39
+ β”‚ multi_head: false
40
+ β”‚ return_nodes:
41
+ β”‚ features.6.0.block.0: 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_14-41-52/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_14-41-52/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_14-41-52/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: pcb"
96
+ β”‚ tags:
97
+ β”‚ - pcb
98
+ β”‚ - efficientnet_v2_s
99
+ β”‚ - downscaled
100
+ β”‚ job_type: ''
101
+ β”‚ aim:
102
+ β”‚ experiment: efficientnet_v2_s_downscaled_pcb
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_14-41-52/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_14-41-52/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
+ β”‚ └── ['pcb', 'efficientnet_v2_s', 'downscaled']
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:61bc986634cb091c29efc95b4fa89dad2b03c62c6a9e275a2853258dd809c8e2
3
+ size 66275905
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,1194,,,,,0.9785800576210022,0.9785800576210022,0.09405126422643661
3
+ 0,1194,,,0.938464343547821,0.19192448258399963,,,
4
+ 1,2389,,,,,0.9810941219329834,0.9810941219329834,0.08577818423509598
5
+ 1,2389,,,0.9626811146736145,0.1403200626373291,,,
6
+ 2,3584,,,,,0.9801890850067139,0.9810941219329834,0.08877433836460114
7
+ 2,3584,,,0.9662377834320068,0.1284174621105194,,,
8
+ 3,4779,,,,,0.9799879193305969,0.9810941219329834,0.10236217826604843
9
+ 3,4779,,,0.9674146175384521,0.126870259642601,,,
10
+ 4,5974,,,,,0.9815969467163086,0.9815969467163086,0.08225452899932861
11
+ 4,5974,,,0.9689052700996399,0.12337687611579895,,,
12
+ 5,7169,,,,,0.9818986058235168,0.9818986058235168,0.08724121004343033
13
+ 5,7169,,,0.9702652096748352,0.1179715171456337,,,
14
+ 6,8364,,,,,0.9819992184638977,0.9819992184638977,0.08026734739542007
15
+ 6,8364,,,0.9697421193122864,0.11816190183162689,,,
16
+ 7,9559,,,,,0.9831053614616394,0.9831053614616394,0.07449725270271301
17
+ 7,9559,,,0.9707097411155701,0.11649829894304276,,,
18
+ 8,10754,,,,,0.9811946749687195,0.9831053614616394,0.07809150964021683
19
+ 8,10754,,,0.9711804986000061,0.11317309737205505,,,
20
+ 9,11949,,,,,0.982602596282959,0.9831053614616394,0.07763692736625671
21
+ 9,11949,,,0.9712589383125305,0.11222042888402939,,,
22
+ 10,13144,,,,,0.9827031493186951,0.9831053614616394,0.07836566120386124
23
+ 10,13144,,,0.9718604683876038,0.1116846352815628,,,
24
+ 11,14339,,,,,0.982300877571106,0.9831053614616394,0.08225186914205551
25
+ 11,14339,,,0.9722527265548706,0.11003268510103226,,,
26
+ 12,15534,,,,,0.9811946749687195,0.9831053614616394,0.08842861652374268
27
+ 12,15534,,,0.9718865752220154,0.10956701636314392,,,
28
+ 13,16729,,,,,0.9836081862449646,0.9836081862449646,0.08435621857643127
29
+ 13,16729,,,0.9724096655845642,0.1086176261305809,,,
30
+ 14,17924,,,,,0.982602596282959,0.9836081862449646,0.08263920247554779
31
+ 14,17924,,,0.9727234840393066,0.10712388902902603,,,
32
+ 15,19119,,,,,0.982300877571106,0.9836081862449646,0.07698046416044235
33
+ 15,19119,,,0.9728542566299438,0.105719193816185,,,
34
+ 16,20314,,,,,0.9834070801734924,0.9836081862449646,0.07577761262655258
35
+ 16,20314,,,0.9728803634643555,0.1063806414604187,,,
36
+ 17,21509,,,,,0.982602596282959,0.9836081862449646,0.08022763580083847
37
+ 17,21509,,,0.9729588627815247,0.10627707093954086,,,
38
+ 18,22704,,,,,0.9841110110282898,0.9841110110282898,0.08097345381975174
39
+ 18,22704,,,0.9729588627815247,0.1045692190527916,,,
40
+ 19,23899,,,,,0.984613835811615,0.984613835811615,0.07302909344434738
41
+ 19,23899,,,0.9747371673583984,0.09775423258543015,,,
42
+ 20,23900,0.9853643774986267,0.07237692177295685,,,,,
tags.log ADDED
@@ -0,0 +1 @@
 
 
1
+ ['pcb', 'efficientnet_v2_s', 'downscaled']