-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsweep_custom.yaml
executable file
·59 lines (59 loc) · 1.12 KB
/
sweep_custom.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
54
55
56
57
58
59
program: train.py
project: xlsr-trainer
method: random
metric:
name: eval/loss
goal: minimize
parameters:
attention_dropout:
distribution: log_uniform
# from 0.1/5 to 0.1*5 - values provided are ln(min) -> ln(max)
min: -3.9
max: -0.7
activation_dropout:
distribution: log_uniform
min: -3.9
max: -1.9
feat_proj_dropout:
distribution: log_uniform
min: -3.9
max: -0.7
feat_quantizer_dropout:
distribution: log_uniform
min: -3.9
max: -0.7
final_dropout:
distribution: log_uniform
min: -3.9
max: -0.7
hidden_dropout:
distribution: log_uniform
min: -3.9
max: -1.9
learning_rate:
distribution: log_uniform
min: -9.2
max: -6.9
command:
- python3
- ${program}
- "--custom_set"
- "./custom_data.csv"
- "--tokenize_config"
- "voidful/wav2vec2-large-xlsr-53-tw-gpt"
- "--xlsr_config"
- "facebook/wav2vec2-xls-r-1b"
- "--sweep_split_shard"
- 90
- "--logging_steps"
- 10
- "--eval_steps"
- 100
- "--output_dir"
- "./model_sweep"
- "--overwrite_output_dir"
- "--num_train_epochs"
- 20
- "--batch"
- 8
- ${args}