We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a736a5 commit 74b5269Copy full SHA for 74b5269
1 file changed
src/constants/sttDefaults.ts
@@ -18,7 +18,7 @@ export interface ModelConfig {
18
};
19
tokenizer: {
20
source: string;
21
- sos: number;
+ bos: number;
22
eos: number;
23
special_char: string;
24
@@ -33,7 +33,7 @@ export const MODEL_CONFIGS: { [key in 'moonshine' | 'whisper']: ModelConfig } =
33
},
34
35
source: MOONSHINE_TOKENIZER,
36
- sos: 1,
+ bos: 1,
37
eos: 2,
38
special_char: '\u2581',
39
@@ -45,7 +45,7 @@ export const MODEL_CONFIGS: { [key in 'moonshine' | 'whisper']: ModelConfig } =
45
46
47
source: WHISPER_TOKENIZER,
48
- sos: 50257,
+ bos: 50257,
49
eos: 50256,
50
special_char: 'Ġ',
51
0 commit comments