Instructions to use htdong/Wan-Alpha_ComfyUI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use htdong/Wan-Alpha_ComfyUI with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("htdong/Wan-Alpha_ComfyUI", 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
Add `library_name: diffusers` to model card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
base_model:
|
| 4 |
- Wan-AI/Wan2.1-T2V-14B
|
|
|
|
| 5 |
pipeline_tag: text-to-video
|
|
|
|
| 6 |
---
|
|
|
|
| 7 |
<div align="center">
|
| 8 |
|
| 9 |
<h1>
|
|
@@ -81,4 +83,4 @@ If you find our work helpful for your research, please consider citing our paper
|
|
| 81 |
|
| 82 |
## 📬 Contact Us
|
| 83 |
|
| 84 |
-
If you have any questions or suggestions, feel free to reach out via [GitHub Issues](https://github.com/WeChatCV/Wan-Alpha/issues) . We look forward to your feedback!
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Wan-AI/Wan2.1-T2V-14B
|
| 4 |
+
license: apache-2.0
|
| 5 |
pipeline_tag: text-to-video
|
| 6 |
+
library_name: diffusers
|
| 7 |
---
|
| 8 |
+
|
| 9 |
<div align="center">
|
| 10 |
|
| 11 |
<h1>
|
|
|
|
| 83 |
|
| 84 |
## 📬 Contact Us
|
| 85 |
|
| 86 |
+
If you have any questions or suggestions, feel free to reach out via [GitHub Issues](https://github.com/WeChatCV/Wan-Alpha/issues) . We look forward to your feedback!
|