Update README: available in Transformers 5.13.0

#23
by eustlb HF Staff - opened
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -416,10 +416,10 @@ Here, chunk size = current frame + right context; each chunk is processed in non
416
 
417
  This checkpoint also runs with [🤗 Transformers](https://github.com/huggingface/transformers). The target language is passed through the processor's `language` argument: a locale such as `en-US`/`de-DE`, a bare code such as `de`, or `auto` for automatic language detection. In `auto` mode the model appends an `<xx-XX>` language tag after the transcript's terminal punctuation; it is a special token, so decoding with `skip_special_tokens=True` strips it (clean transcript) and `skip_special_tokens=False` keeps it for language labeling.
418
 
419
- Until Nemotron3_5Asr is part of an official Transformers release, install Transformers from source:
420
 
421
  ```bash
422
- pip install git+https://github.com/huggingface/transformers
423
  ```
424
 
425
  <details>
 
416
 
417
  This checkpoint also runs with [🤗 Transformers](https://github.com/huggingface/transformers). The target language is passed through the processor's `language` argument: a locale such as `en-US`/`de-DE`, a bare code such as `de`, or `auto` for automatic language detection. In `auto` mode the model appends an `<xx-XX>` language tag after the transcript's terminal punctuation; it is a special token, so decoding with `skip_special_tokens=True` strips it (clean transcript) and `skip_special_tokens=False` keeps it for language labeling.
418
 
419
+ Nemotron3_5Asr is available in 🤗 Transformers starting from v5.13.0.
420
 
421
  ```bash
422
+ pip install "transformers>=5.13.0"
423
  ```
424
 
425
  <details>