Instructions to use ByteDance/ContentV-8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ByteDance/ContentV-8B with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ByteDance/ContentV-8B", 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 README.md
Browse files
README.md
CHANGED
|
@@ -49,7 +49,7 @@ Our open-source 8B model (based on Stable Diffusion 3.5 Large and Wan-VAE) achie
|
|
| 49 |
|
| 50 |
<div align="center">
|
| 51 |
<img src="https://raw.githubusercontent.com/bytedance/ContentV/refs/heads/main/assets/demo.jpg" width="100%">
|
| 52 |
-
<img src="https://raw.githubusercontent.com/bytedance/ContentV/refs/heads/main/assets/arch.
|
| 53 |
</div>
|
| 54 |
|
| 55 |
## ⚡ Quickstart
|
|
|
|
| 49 |
|
| 50 |
<div align="center">
|
| 51 |
<img src="https://raw.githubusercontent.com/bytedance/ContentV/refs/heads/main/assets/demo.jpg" width="100%">
|
| 52 |
+
<img src="https://raw.githubusercontent.com/bytedance/ContentV/refs/heads/main/assets/arch.jpg" width="100%">
|
| 53 |
</div>
|
| 54 |
|
| 55 |
## ⚡ Quickstart
|