Instructions to use callgg/vibevoice-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use callgg/vibevoice-large with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("callgg/vibevoice-large", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update preprocessor_config.json
Browse files- preprocessor_config.json +1 -1
preprocessor_config.json
CHANGED
|
@@ -9,5 +9,5 @@
|
|
| 9 |
"target_dB_FS": -25,
|
| 10 |
"eps": 1e-06
|
| 11 |
},
|
| 12 |
-
"language_model_pretrained_name": "
|
| 13 |
}
|
|
|
|
| 9 |
"target_dB_FS": -25,
|
| 10 |
"eps": 1e-06
|
| 11 |
},
|
| 12 |
+
"language_model_pretrained_name": "qwen2.5-vl-7b-it-bf16"
|
| 13 |
}
|