Update README.md
Browse files
README.md
CHANGED
|
@@ -149,6 +149,7 @@ DASH_API_KEY=your_key torchrun --nproc_per_node=8 generate.py --task i2v-A14B --
|
|
| 149 |
> The process of prompt extension can be referenced [here](#2-using-prompt-extention).
|
| 150 |
|
| 151 |
- Running with Diffusers
|
|
|
|
| 152 |
```py
|
| 153 |
import torch
|
| 154 |
import numpy as np
|
|
@@ -190,7 +191,11 @@ output = pipe(
|
|
| 190 |
export_to_video(output, "i2v_output.mp4", fps=16)
|
| 191 |
```
|
| 192 |
|
| 193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 194 |
|
| 195 |
## Computational Efficiency on Different GPUs
|
| 196 |
|
|
|
|
| 149 |
> The process of prompt extension can be referenced [here](#2-using-prompt-extention).
|
| 150 |
|
| 151 |
- Running with Diffusers
|
| 152 |
+
|
| 153 |
```py
|
| 154 |
import torch
|
| 155 |
import numpy as np
|
|
|
|
| 191 |
export_to_video(output, "i2v_output.mp4", fps=16)
|
| 192 |
```
|
| 193 |
|
| 194 |
+
> 💡**Note**:This model requires features that are currently available only in the main branch of diffusers. The latest stable release on PyPI does not yet include these updates.
|
| 195 |
+
> To use this model, please install the library from source:
|
| 196 |
+
> ```
|
| 197 |
+
> pip install git+https://github.com/huggingface/diffusers
|
| 198 |
+
> ```
|
| 199 |
|
| 200 |
## Computational Efficiency on Different GPUs
|
| 201 |
|