-
Notifications
You must be signed in to change notification settings - Fork 0
/
videomae_pre_training.yaml
52 lines (39 loc) · 1.03 KB
/
videomae_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
# @package _global_
# to execute this experiment run:
# python train.py experiment=example
defaults:
- override /data: bundestag_slr_pretrain
- override /model: videomae_pretraining_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: 40
precision: 16-mixed
gradient_clip_val: 0.5
gradient_clip_algorithm: value
devices: 1
data:
batch_size: 4
paths:
log_dir: /data/1braach/logs/
logger:
wandb:
tags: ${tags}
group: "sign_language"
callbacks:
model_checkpoint:
dirpath: ${paths.output_dir}/checkpoints
filename: "videomae_{epoch:03d}_{step:07d}"
mode: "min"
save_top_k: 5
save_last: True
auto_insert_metric_name: True
train_time_interval:
_target_: datetime.timedelta
minutes: 30
early_stopping: null