Upload microsoft_VibeVoice-Realtime-0.5B_1.txt with huggingface_hub
Browse files
microsoft_VibeVoice-Realtime-0.5B_1.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```CODE:
|
| 2 |
+
# Load model directly
|
| 3 |
+
from transformers import VibeVoiceStreamingForConditionalGenerationInference
|
| 4 |
+
model = VibeVoiceStreamingForConditionalGenerationInference.from_pretrained("microsoft/VibeVoice-Realtime-0.5B", dtype="auto")
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
ERROR:
|
| 8 |
+
Traceback (most recent call last):
|
| 9 |
+
File "/tmp/microsoft_VibeVoice-Realtime-0.5B_1woE0t2.py", line 24, in <module>
|
| 10 |
+
from transformers import VibeVoiceStreamingForConditionalGenerationInference
|
| 11 |
+
ImportError: cannot import name 'VibeVoiceStreamingForConditionalGenerationInference' from 'transformers' (/tmp/.cache/uv/environments-v2/9e6d0a0f32dc6892/lib/python3.13/site-packages/transformers/__init__.py)
|