fuann commited on
Commit
c44fef3
1 Parent(s): 208af77

Upload train_conf.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. train_conf.json +35 -0
train_conf.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "per_device_train_batch_size": 64,
4
+ "gradient_accumulation_steps": 1,
5
+ "per_device_eval_batch_size": 32,
6
+ "eval_accumulation_steps": 1,
7
+ "evaluation_strategy": "steps",
8
+ "max_steps": 1000,
9
+ "save_steps": 100,
10
+ "eval_steps": 100,
11
+ "logging_steps": 50,
12
+ "learning_rate": 0.0001,
13
+ "weight_decay": 0,
14
+ "warmup_steps": 600,
15
+ "save_total_limit": 1,
16
+ "metric_for_best_model": "loss",
17
+ "greater_is_better": false
18
+ },
19
+ {
20
+ "model_path": "facebook/wav2vec2-large-lv60",
21
+ "pretrained_path": "/share/nas167/fuann/capt/pretrained-model/timit-wav2vec2-large-lv60-phoneme",
22
+ "task_type": "mdd",
23
+ "problem_type": "single_label_classification",
24
+ "model_type": "baseline",
25
+ "use_prompt": true,
26
+ "final_dropout": 0.0,
27
+ "ctc_zero_infinity": true,
28
+ "layerdrop": 0.0,
29
+ "activation_dropout": 0.0,
30
+ "mask_time_prob": 0.095,
31
+ "mask_time_length": 10,
32
+ "mask_feature_prob": 1e-05,
33
+ "mask_feature_length": 64
34
+ }
35
+ ]