Instructions to use fixie-ai/ultravox-v0_4_1-llama-3_1-8b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fixie-ai/ultravox-v0_4_1-llama-3_1-8b with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("fixie-ai/ultravox-v0_4_1-llama-3_1-8b", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -67,7 +67,7 @@ import transformers
|
|
| 67 |
import numpy as np
|
| 68 |
import librosa
|
| 69 |
|
| 70 |
-
pipe = transformers.pipeline(model='fixie-ai/ultravox-
|
| 71 |
|
| 72 |
path = "<path-to-input-audio>" # TODO: pass the audio here
|
| 73 |
audio, sr = librosa.load(path, sr=16000)
|
|
|
|
| 67 |
import numpy as np
|
| 68 |
import librosa
|
| 69 |
|
| 70 |
+
pipe = transformers.pipeline(model='fixie-ai/ultravox-v0_4_1-llama-3_1-8b', trust_remote_code=True)
|
| 71 |
|
| 72 |
path = "<path-to-input-audio>" # TODO: pass the audio here
|
| 73 |
audio, sr = librosa.load(path, sr=16000)
|