patrickvonplaten commited on
Commit
d9affee
·
1 Parent(s): 1a847ef

added script for german

Browse files
dummy/events.out.tfevents.1625515544.t1v-n-3abeb69a-w-0.663813.3.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a30cd9b161dea8f1f2825cf3d0702fce53de22f079fa9e2e72b9f44f8b51068b
3
+ size 187
run_german.sh ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ ./run_wav2vec2_pretrain_flax.py \
3
+ --output_dir="./german-1st" \
4
+ --speech_file_column="path" \
5
+ --num_train_epochs="5" \
6
+ --per_device_train_batch_size="32" \
7
+ --per_device_eval_batch_size="32" \
8
+ --validation_split_percentage="5" \
9
+ --learning_rate="5e-4" \
10
+ --weight_decay="0.01" \
11
+ --warmup_steps="1000" \
12
+ --model_name_or_path="./" \
13
+ --dataset_name="common_voice" \
14
+ --dataset_config_name="de" \
15
+ --preprocessing_num_workers="4" \
16
+ --max_duration_in_seconds="10.0" \
17
+ --adam_beta1="0.9" \
18
+ --adam_beta2="0.98" \
19
+ --dtype="bfloat16" \
20
+ --cache_dir="/home/wav2vec2-experiments/data_cache/" \
21
+ --pad_to_multiple_of="16384" \
22
+ --push_to_hub