-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrwth_from_scratch.yaml
53 lines (39 loc) · 1.01 KB
/
rwth_from_scratch.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# @package _global_
# to execute this experiment run:
# python train.py experiment=example
defaults:
- override /data: rwth_phoenix_2014
- override /model: sign_language_module
- override /callbacks: default
- override /trainer: gpu
# all parameters below will be merged with parameters from default configurations set above
# this allows you to overwrite only specified parameters
tags: ["sign_language", "rwth_phoenix"]
seed: 12345
trainer:
min_epochs: 10
max_epochs: 90
precision: 16-mixed
accumulate_grad_batches: 8
gradient_clip_val: 0.5
gradient_clip_algorithm: value
devices: 1
data:
batch_size: 8
paths:
log_dir: /data/1braach/logs/
logger:
wandb:
tags: ${tags}
group: "sign_language"
callbacks:
model_checkpoint:
dirpath: ${paths.output_dir}/checkpoints
filename: "epoch_{epoch:03d}_step_{global_step:06d}"
monitor: "val/loss"
mode: "min"
save_top_k: 3
save_last: True
every_n_epochs: 1
auto_insert_metric_name: True
early_stopping: null