Upload 4 files
Browse files- config_tree.log +139 -0
- epoch_018.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: efficientnet_v2_s
|
39 |
+
β multi_head: false
|
40 |
+
β return_nodes:
|
41 |
+
β features.7: 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-13_09-06-12/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-13_09-06-12/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-13_09-06-12/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 |
+
β - efficientnet_v2_s
|
99 |
+
β - full
|
100 |
+
β job_type: ''
|
101 |
+
β aim:
|
102 |
+
β experiment: efficientnet_v2_s_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-13_09-06-12/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-13_09-06-12/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', 'efficientnet_v2_s', '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_018.ckpt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cbd3ef2f094c718a1e12e8697224d676d1ae0e5413bffea5bd340fbdfefa641c
|
3 |
+
size 243474990
|
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.8840553164482117,0.8840553164482117,0.32100909948349
|
3 |
+
0,1432,,,0.8256848454475403,0.4019905626773834,,,
|
4 |
+
1,2865,,,,,0.9123502373695374,0.9123502373695374,0.25541287660598755
|
5 |
+
1,2865,,,0.8836808800697327,0.2929171621799469,,,
|
6 |
+
2,4298,,,,,0.9252534508705139,0.9252534508705139,0.21187911927700043
|
7 |
+
2,4298,,,0.9029837846755981,0.25495588779449463,,,
|
8 |
+
3,5731,,,,,0.9152073860168457,0.9252534508705139,0.23703855276107788
|
9 |
+
3,5731,,,0.9088073372840881,0.23571276664733887,,,
|
10 |
+
4,7164,,,,,0.9269124269485474,0.9269124269485474,0.20943181216716766
|
11 |
+
4,7164,,,0.9126461148262024,0.22891747951507568,,,
|
12 |
+
5,8597,,,,,0.9183410406112671,0.9269124269485474,0.21929749846458435
|
13 |
+
5,8597,,,0.9160268902778625,0.22012804448604584,,,
|
14 |
+
6,10030,,,,,0.9286636114120483,0.9286636114120483,0.1929755061864853
|
15 |
+
6,10030,,,0.9201710224151611,0.20916703343391418,,,
|
16 |
+
7,11463,,,,,0.9271889328956604,0.9286636114120483,0.1965666115283966
|
17 |
+
7,11463,,,0.9230501055717468,0.20277678966522217,,,
|
18 |
+
8,12896,,,,,0.9352995157241821,0.9352995157241821,0.18036526441574097
|
19 |
+
8,12896,,,0.9257110357284546,0.19621360301971436,,,
|
20 |
+
9,14329,,,,,0.9325345754623413,0.9352995157241821,0.1826656013727188
|
21 |
+
9,14329,,,0.9270197153091431,0.19333048164844513,,,
|
22 |
+
10,15762,,,,,0.934101402759552,0.9352995157241821,0.18409587442874908
|
23 |
+
10,15762,,,0.9273905158042908,0.1888417899608612,,,
|
24 |
+
11,17195,,,,,0.9384331703186035,0.9384331703186035,0.173994243144989
|
25 |
+
11,17195,,,0.9297897219657898,0.18396992981433868,,,
|
26 |
+
12,18628,,,,,0.9360368847846985,0.9384331703186035,0.17713122069835663
|
27 |
+
12,18628,,,0.9323634505271912,0.17747792601585388,,,
|
28 |
+
13,20061,,,,,0.9342857003211975,0.9384331703186035,0.17308710515499115
|
29 |
+
13,20061,,,0.93227618932724,0.17590618133544922,,,
|
30 |
+
14,21494,,,,,0.9367741942405701,0.9384331703186035,0.17335502803325653
|
31 |
+
14,21494,,,0.9342173933982849,0.1704968959093094,,,
|
32 |
+
15,22927,,,,,0.9357603788375854,0.9384331703186035,0.1706673800945282
|
33 |
+
15,22927,,,0.9365730285644531,0.16884759068489075,,,
|
34 |
+
16,24360,,,,,0.9364055395126343,0.9384331703186035,0.1772608906030655
|
35 |
+
16,24360,,,0.9372055530548096,0.16452334821224213,,,
|
36 |
+
17,25793,,,,,0.937972366809845,0.9384331703186035,0.1691957414150238
|
37 |
+
17,25793,,,0.9389504194259644,0.1628231555223465,,,
|
38 |
+
18,27226,,,,,0.9405530095100403,0.9405530095100403,0.1702987104654312
|
39 |
+
18,27226,,,0.9389068484306335,0.1588040292263031,,,
|
40 |
+
19,28659,,,,,0.9376037120819092,0.9405530095100403,0.16988006234169006
|
41 |
+
19,28659,,,0.940455436706543,0.1561402678489685,,,
|
42 |
+
20,28660,0.9334116578102112,0.18153607845306396,,,,,
|
tags.log
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
['gears', 'efficientnet_v2_s', 'full']
|