Leonoravesterbacka commited on
Commit
8c68b0f
·
verified ·
1 Parent(s): 6f852a5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -35,7 +35,7 @@ We provide checkpoints in different formats: `Hugging Face`, `whisper.cpp` (GGML
35
 
36
  ### 2025-05-13 Update!
37
  The default when loading our models through Hugging Face is **Stage 2**.
38
- As of May 2025 there exists two **Stage 2** versions in addition to the default, namely **Subtitle** and **Strict** that specify the transcription style.
39
  By specifying `revision="subtitle"` in `.from_pretrained()` the model version with a more condensed style of transcribing is accessed.
40
  By specifying `revision="strict"` in `.from_pretrained()` the more verbatim-like version of the model is accessed.
41
  Below is an example of how this argument is passed in the `.from_pretrained()` function
@@ -51,7 +51,7 @@ model = AutoModelForSpeechSeq2Seq.from_pretrained(
51
  model_id, torch_dtype=torch_dtype, use_safetensors=True, cache_dir="cache", revision="strict"
52
  )
53
  ```
54
- The verbosity of the transcription styles of the three model versions ranges from the least verbose **Subtitle**, to **Stage 2** (default) to the most verbose **Strict**.
55
 
56
 
57
  #### Hugging Face
 
35
 
36
  ### 2025-05-13 Update!
37
  The default when loading our models through Hugging Face is **Stage 2**.
38
+ As of May 2025 there exists one **Stage 2** version in addition to the default **Strict** that specify the transcription style.
39
  By specifying `revision="subtitle"` in `.from_pretrained()` the model version with a more condensed style of transcribing is accessed.
40
  By specifying `revision="strict"` in `.from_pretrained()` the more verbatim-like version of the model is accessed.
41
  Below is an example of how this argument is passed in the `.from_pretrained()` function
 
51
  model_id, torch_dtype=torch_dtype, use_safetensors=True, cache_dir="cache", revision="strict"
52
  )
53
  ```
54
+ The verbosity of the transcription styles of the three model versions ranges from the least verbose **Stage 2** (default) to the most verbose **Strict**.
55
 
56
 
57
  #### Hugging Face