patrickvonplaten
commited on
Commit
•
3ccb54b
1
Parent(s):
d5329e1
Update README.md
Browse files
README.md
CHANGED
@@ -40,17 +40,16 @@ Now, generate a video:
|
|
40 |
|
41 |
```python
|
42 |
import torch
|
43 |
-
from diffusers import
|
44 |
from diffusers.utils import export_to_video
|
45 |
|
46 |
-
pipe =
|
47 |
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
|
48 |
pipe = pipe.to("cuda")
|
49 |
|
50 |
prompt = "Spiderman is surfing"
|
51 |
-
video_frames = pipe(prompt).frames
|
52 |
video_path = export_to_video(video_frames)
|
53 |
-
print(video_path)
|
54 |
```
|
55 |
|
56 |
Here are some results:
|
|
|
40 |
|
41 |
```python
|
42 |
import torch
|
43 |
+
from diffusers import DiffusionPipeline, DPMSolverMultistepScheduler
|
44 |
from diffusers.utils import export_to_video
|
45 |
|
46 |
+
pipe = DiffusionPipeline.from_pretrained("damo-vilab/text-to-video-ms-1.7b-legacy", torch_dtype=torch.float16)
|
47 |
pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
|
48 |
pipe = pipe.to("cuda")
|
49 |
|
50 |
prompt = "Spiderman is surfing"
|
51 |
+
video_frames = pipe(prompt, num_inference_steps=25).frames
|
52 |
video_path = export_to_video(video_frames)
|
|
|
53 |
```
|
54 |
|
55 |
Here are some results:
|