File size: 1,209 Bytes
8ac8b8e
 
 
 
 
c26c107
 
8ac8b8e
 
 
 
 
 
 
 
 
c26c107
 
13e9d03
c26c107
8ac8b8e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Whisper Finetuning script for the NST dataset
# Currently for training on a 48GB 
# Reduce batch size and learning rate if training on smaller GPU

python run_whisper_finetuning.py \
	--model_name_or_path="openai/whisper-small" \
	--output_dir="../whisper-NST-cons2e5" \
	--overwrite_output_dir=True \
	--language="Norwegian" \
	--task="transcribe" \
	--dataset_name="NbAiLab/NST" \
	--dataset_config="no-close" \
	--do_train=True \
	--do_eval=True \
	--audio_column_name="audio" \
	--text_column_name="text" \
	--per_device_train_batch_size=16 \
    	--per_device_train_batch_size=16 \
	--learning_rate=2e-5 \
	--lr_scheduler_type="constant_with_warmup" \
	--warmup_steps=500 \
	--max_steps=10000 \
	--gradient_checkpointing=True \
	--gradient_accumulation_steps=1 \
	--group_by_length=False \
	--evaluation_strategy="steps" \
	--save_steps=1000 \
	--eval_steps=1000 \
	--max_eval_samples=100 \
	--logging_steps=250 \
	--fp16=True \
	--load_best_model_at_end=True \
	--metric_for_best_model="wer" \
	--greater_is_better=False \
	--report_to="tensorboard" \
	--predict_with_generate=True \
	--generation_max_length=225 \
	--print_training_arguments=True \
	--ignore_data_skip=True \
	--push_to_hub=True