pere commited on
Commit
d2f4a47
·
1 Parent(s): 5d1e8fb

first on Dante

Browse files
Files changed (2) hide show
  1. pytorch_model_finalOH.bin +3 -0
  2. run_recover.sh +41 -0
pytorch_model_finalOH.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a8812315d33e44bb3b0f3896fe7669ab1b54144cc4c0a3718148c972bd7853f
3
+ size 3850486961
run_recover.sh ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ WANDB_ENTITY=NbAiLab WANDB_PROJECT=wav2vec2 python run_speech_recognition_ctc.py \
2
+ --dataset_name="NbAiLab/NPSC" \
3
+ --model_name_or_path="./" \
4
+ --hub_model_id="NbAiLab/XLSR-1B-bokmaal-low" \
5
+ --dataset_config_name="16K_mp3_bokmaal" \
6
+ --output_dir="./" \
7
+ --overwrite_output_dir \
8
+ --num_train_epochs="34" \
9
+ --per_device_train_batch_size="12" \
10
+ --per_device_eval_batch_size="12" \
11
+ --gradient_accumulation_steps="2" \
12
+ --learning_rate="1.7e-5" \
13
+ --warmup_steps="2000" \
14
+ --length_column_name="input_length" \
15
+ --evaluation_strategy="steps" \
16
+ --text_column_name="text" \
17
+ --save_steps="500" \
18
+ --eval_steps="500" \
19
+ --logging_steps="100" \
20
+ --layerdrop="0.041" \
21
+ --attention_dropout="0.094" \
22
+ --activation_dropout="0.055" \
23
+ --hidden_dropout="0.047" \
24
+ --save_total_limit="3" \
25
+ --freeze_feature_encoder \
26
+ --feat_proj_dropout="0.04" \
27
+ --mask_time_prob="0.082" \
28
+ --mask_time_length="10" \
29
+ --mask_feature_prob="0.25" \
30
+ --mask_feature_length="64" \
31
+ --gradient_checkpointing \
32
+ --min_duration_in_seconds="0.5" \
33
+ --max_duration_in_seconds="30.0" \
34
+ --ctc_zero_infinity=True \
35
+ --use_auth_token \
36
+ --seed="42" \
37
+ --fp16 \
38
+ --group_by_length \
39
+ --do_train --do_eval \
40
+ --push_to_hub \
41
+ --preprocessing_num_workers="16"