Instructions to use Soul-AILab/SoulX-FlashHead-1_3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Soul-AILab/SoulX-FlashHead-1_3B with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Soul-AILab/SoulX-FlashHead-1_3B", dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -189,5 +189,8 @@ If you find our work useful in your research, please consider citing:
|
|
| 189 |
> If you find our work useful, please also consider starring the original repositories of these foundational methods.
|
| 190 |
|
| 191 |
## 💡 Star History
|
| 192 |
-
|
| 193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
> If you find our work useful, please also consider starring the original repositories of these foundational methods.
|
| 190 |
|
| 191 |
## 💡 Star History
|
| 192 |
+
<p align="center">
|
| 193 |
+
<a href="https://star-history.com/#Soul-AILab/SoulX-FlashHead&Date">
|
| 194 |
+
<img src="https://api.star-history.com/svg?repos=Soul-AILab/SoulX-FlashHead&type=Date" alt="Star History Chart" width="100%">
|
| 195 |
+
</a>
|
| 196 |
+
</p>
|