Raiff1982 commited on
Commit
148e9c9
·
verified ·
1 Parent(s): ea70a0e

Create text-to-video-ms-1.7b

Browse files
Files changed (1) hide show
  1. text-to-video-ms-1.7b +6 -0
text-to-video-ms-1.7b ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from diffusers import DiffusionPipeline
2
+
3
+ pipe = DiffusionPipeline.from_pretrained("ali-vilab/text-to-video-ms-1.7b")
4
+
5
+ prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
6
+ image = pipe(prompt).images[0]