Commit
•
2ba8250
1
Parent(s):
13c351d
Fix code snippet (#2)
Browse files- Fix code snippet (dfcbd420c640bce50f0622af114dcdce4506649c)
Co-authored-by: Omar Sanseviero <osanseviero@users.noreply.huggingface.co>
README.md
CHANGED
@@ -26,7 +26,7 @@ This model is meant for research purposes. Please look at the [model limitations
|
|
26 |
|
27 |
## Use cases
|
28 |
|
29 |
-
This model has a wide range of applications
|
30 |
|
31 |
## Usage
|
32 |
|
@@ -96,7 +96,7 @@ pipe.enable_model_cpu_offload()
|
|
96 |
pipe.enable_vae_slicing()
|
97 |
|
98 |
# generate
|
99 |
-
prompt = Spiderman is surfing. Darth Vader is also surfing and following Spiderman"
|
100 |
video_frames = pipe(prompt, num_inference_steps=25, num_frames=200).frames
|
101 |
|
102 |
# convent to video
|
|
|
26 |
|
27 |
## Use cases
|
28 |
|
29 |
+
This model has a wide range of applications and can reason and generate videos based on arbitrary English text descriptions.
|
30 |
|
31 |
## Usage
|
32 |
|
|
|
96 |
pipe.enable_vae_slicing()
|
97 |
|
98 |
# generate
|
99 |
+
prompt = "Spiderman is surfing. Darth Vader is also surfing and following Spiderman"
|
100 |
video_frames = pipe(prompt, num_inference_steps=25, num_frames=200).frames
|
101 |
|
102 |
# convent to video
|