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: 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-13_23-20-24/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_23-20-24/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_23-20-24/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 |
+
β - downscaled
|
100 |
+
β job_type: ''
|
101 |
+
β aim:
|
102 |
+
β experiment: efficientnet_v2_s_downscaled_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_23-20-24/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_23-20-24/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', '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:849f19c3e353593595050da692756e61a37fa3c08186ba9913ee29223729f6eb
|
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,1432,,,,,0.9085714221000671,0.9085714221000671,0.24480490386486053
|
3 |
+
0,1432,,,0.8371139168739319,0.37539559602737427,,,
|
4 |
+
1,2865,,,,,0.9210138320922852,0.9210138320922852,0.2144012451171875
|
5 |
+
1,2865,,,0.8881085515022278,0.2819730341434479,,,
|
6 |
+
2,4298,,,,,0.9107834100723267,0.9210138320922852,0.24240484833717346
|
7 |
+
2,4298,,,0.9047722816467285,0.24576902389526367,,,
|
8 |
+
3,5731,,,,,0.9278340935707092,0.9278340935707092,0.1926228404045105
|
9 |
+
3,5731,,,0.911533772945404,0.22922579944133759,,,
|
10 |
+
4,7164,,,,,0.9284792542457581,0.9284792542457581,0.2013724148273468
|
11 |
+
4,7164,,,0.9162886142730713,0.21806026995182037,,,
|
12 |
+
5,8597,,,,,0.9164977073669434,0.9284792542457581,0.23447905480861664
|
13 |
+
5,8597,,,0.9194076061248779,0.2108868509531021,,,
|
14 |
+
6,10030,,,,,0.9305990934371948,0.9305990934371948,0.1943376362323761
|
15 |
+
6,10030,,,0.9221776127815247,0.20505937933921814,,,
|
16 |
+
7,11463,,,,,0.9329953789710999,0.9329953789710999,0.19416561722755432
|
17 |
+
7,11463,,,0.9232900142669678,0.19831497967243195,,,
|
18 |
+
8,12896,,,,,0.9309677481651306,0.9329953789710999,0.19286231696605682
|
19 |
+
8,12896,,,0.9265616536140442,0.19185468554496765,,,
|
20 |
+
9,14329,,,,,0.9272810816764832,0.9329953789710999,0.21023258566856384
|
21 |
+
9,14329,,,0.9285028576850891,0.1868603676557541,,,
|
22 |
+
10,15762,,,,,0.9277419447898865,0.9329953789710999,0.2054603397846222
|
23 |
+
10,15762,,,0.9310765862464905,0.1829412281513214,,,
|
24 |
+
11,17195,,,,,0.9326267242431641,0.9329953789710999,0.1741730272769928
|
25 |
+
11,17195,,,0.9313383102416992,0.17788906395435333,,,
|
26 |
+
12,18628,,,,,0.9349308609962463,0.9349308609962463,0.17400863766670227
|
27 |
+
12,18628,,,0.932952344417572,0.17798283696174622,,,
|
28 |
+
13,20061,,,,,0.9214746356010437,0.9349308609962463,0.20284594595432281
|
29 |
+
13,20061,,,0.935329794883728,0.16862241923809052,,,
|
30 |
+
14,21494,,,,,0.9369585514068604,0.9369585514068604,0.1715237945318222
|
31 |
+
14,21494,,,0.9365075826644897,0.16568107903003693,,,
|
32 |
+
15,22927,,,,,0.9315207600593567,0.9369585514068604,0.18626686930656433
|
33 |
+
15,22927,,,0.9373146295547485,0.16141295433044434,,,
|
34 |
+
16,24360,,,,,0.9360368847846985,0.9369585514068604,0.17094112932682037
|
35 |
+
16,24360,,,0.9386014938354492,0.15998490154743195,,,
|
36 |
+
17,25793,,,,,0.933824896812439,0.9369585514068604,0.18705150485038757
|
37 |
+
17,25793,,,0.9403899908065796,0.15627720952033997,,,
|
38 |
+
18,27226,,,,,0.9313364028930664,0.9369585514068604,0.18024460971355438
|
39 |
+
18,27226,,,0.9410879611968994,0.15260526537895203,,,
|
40 |
+
19,28659,,,,,0.9397234916687012,0.9397234916687012,0.16909097135066986
|
41 |
+
19,28659,,,0.9422003030776978,0.1503242552280426,,,
|
42 |
+
20,28660,0.9356203079223633,0.17211364209651947,,,,,
|
tags.log
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
['gears', 'efficientnet_v2_s', 'downscaled']
|