root commited on
Commit
ecb927f
·
1 Parent(s): 08ce36d

add default_parameters.yaml

Browse files
Files changed (1) hide show
  1. configs/default_parameters.yaml +65 -0
configs/default_parameters.yaml ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ whisper:
2
+ model_size: "large-v2"
3
+ file_format: "SRT"
4
+ lang: "Automatic Detection"
5
+ is_translate: false
6
+ beam_size: 5
7
+ log_prob_threshold: -1
8
+ no_speech_threshold: 0.6
9
+ best_of: 5
10
+ patience: 1
11
+ condition_on_previous_text: true
12
+ prompt_reset_on_temperature: 0.5
13
+ initial_prompt: null
14
+ temperature: 0
15
+ compression_ratio_threshold: 2.4
16
+ chunk_length: 30
17
+ batch_size: 24
18
+ length_penalty: 1
19
+ repetition_penalty: 1
20
+ no_repeat_ngram_size: 0
21
+ prefix: null
22
+ suppress_blank: true
23
+ suppress_tokens: "[-1]"
24
+ max_initial_timestamp: 1
25
+ word_timestamps: false
26
+ prepend_punctuations: "\"'“¿([{-"
27
+ append_punctuations: "\"'.。,,!!??::”)]}、"
28
+ max_new_tokens: null
29
+ hallucination_silence_threshold: null
30
+ hotwords: null
31
+ language_detection_threshold: null
32
+ language_detection_segments: 1
33
+ add_timestamp: true
34
+
35
+ vad:
36
+ vad_filter: false
37
+ threshold: 0.5
38
+ min_speech_duration_ms: 250
39
+ max_speech_duration_s: 9999
40
+ min_silence_duration_ms: 1000
41
+ speech_pad_ms: 2000
42
+
43
+ diarization:
44
+ is_diarize: false
45
+ hf_token: ""
46
+
47
+ bgm_separation:
48
+ is_separate_bgm: false
49
+ model_size: "UVR-MDX-NET-Inst_HQ_4"
50
+ segment_size: 256
51
+ save_file: false
52
+ enable_offload: true
53
+
54
+ translation:
55
+ deepl:
56
+ api_key: ""
57
+ is_pro: false
58
+ source_lang: "Automatic Detection"
59
+ target_lang: "English"
60
+ nllb:
61
+ model_size: "facebook/nllb-200-1.3B"
62
+ source_lang: null
63
+ target_lang: null
64
+ max_length: 200
65
+ add_timestamp: true