Update README.md
Browse files
README.md
CHANGED
|
@@ -40,6 +40,13 @@ FastWan2.1-T2V-14B-480P-Diffuserss is built upon Wan-AI/Wan2.1-T2V-14B-Diffusers
|
|
| 40 |
```python
|
| 41 |
#!/bin/bash
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
num_gpus=1
|
| 44 |
export FASTVIDEO_ATTENTION_BACKEND=VIDEO_SPARSE_ATTN
|
| 45 |
export MODEL_BASE=FastVideo/FastWan2.1-T2V-14B-480P-Diffusers
|
|
|
|
| 40 |
```python
|
| 41 |
#!/bin/bash
|
| 42 |
|
| 43 |
+
# install FastVideo and VSA first
|
| 44 |
+
git clone https://github.com/hao-ai-lab/FastVideo
|
| 45 |
+
pip install -e .
|
| 46 |
+
cd csrc/attn
|
| 47 |
+
git submodule update --init --recursive
|
| 48 |
+
python setup_vsa.py install
|
| 49 |
+
|
| 50 |
num_gpus=1
|
| 51 |
export FASTVIDEO_ATTENTION_BACKEND=VIDEO_SPARSE_ATTN
|
| 52 |
export MODEL_BASE=FastVideo/FastWan2.1-T2V-14B-480P-Diffusers
|