Fix `decoder_start_token_id` to correct value `50258` from `50257`
Browse filesModel does not work correctly with `decoder_start_token_id` set to `50257`. For details see [my posts in discussion](https://huggingface.co/mikr/whisper-large-v3-czech-cv13/discussions/1).
- config.json +1 -1
config.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
| 18 |
"decoder_ffn_dim": 5120,
|
| 19 |
"decoder_layerdrop": 0.0,
|
| 20 |
"decoder_layers": 32,
|
| 21 |
-
"decoder_start_token_id":
|
| 22 |
"dropout": 0.0,
|
| 23 |
"encoder_attention_heads": 20,
|
| 24 |
"encoder_ffn_dim": 5120,
|
|
|
|
| 18 |
"decoder_ffn_dim": 5120,
|
| 19 |
"decoder_layerdrop": 0.0,
|
| 20 |
"decoder_layers": 32,
|
| 21 |
+
"decoder_start_token_id": 50258,
|
| 22 |
"dropout": 0.0,
|
| 23 |
"encoder_attention_heads": 20,
|
| 24 |
"encoder_ffn_dim": 5120,
|