-
Notifications
You must be signed in to change notification settings - Fork 0
/
langdecoder_pre_training.yaml
53 lines (39 loc) · 1.03 KB
/
langdecoder_pre_training.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_pre
- override /model: sign_language_decoder_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: ["videomae", "bundestag_slr", "pre_training"]
seed: 12345
trainer:
min_epochs: 10
max_epochs: 200
precision: 16-mixed
gradient_clip_val: 0.5
gradient_clip_algorithm: value
devices: 1
data:
batch_size: 64
max_frame_seq_length: 1
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