Audio-Text-to-Text
Transformers
Safetensors
step_audio_2
text-generation
audio-reasoning
chain-of-thought
multi-modal
step-audio-r1
custom_code
8-bit precision
compressed-tensors
Instructions to use TransWithAI/Step-Audio-R1-NVFP4A16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TransWithAI/Step-Audio-R1-NVFP4A16 with Transformers:
# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("TransWithAI/Step-Audio-R1-NVFP4A16", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Fix non stopping sequence
Browse files- generation_config.json +6 -0
generation_config.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"transformers_version": "4.56.2"
|
| 4 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 151643,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151643,
|
| 6 |
+
151665
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
"transformers_version": "4.56.2"
|
| 10 |
}
|