BAAI
/

PhyscalX commited on
Commit
9487909
1 Parent(s): b6f77bf

Use better configs for T2V

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -46,6 +46,15 @@ export_to_image(image, "jellyfish.jpg")
46
 
47
  video = pipe(prompt, max_latent_length=9).frames[0]
48
  export_to_video(video, "jellyfish.mp4", fps=12)
 
 
 
 
 
 
 
 
 
49
  ```
50
 
51
  # Uses
 
46
 
47
  video = pipe(prompt, max_latent_length=9).frames[0]
48
  export_to_video(video, "jellyfish.mp4", fps=12)
49
+
50
+ # Increase AR and diffusion steps for better video quality.
51
+ video = pipe(
52
+ prompt,
53
+ max_latent_length=9,
54
+ num_inference_steps=128, # default: 64
55
+ num_diffusion_steps=100, # default: 25
56
+ ).frames[0]
57
+ export_to_video(video, "jellyfish_v2.mp4", fps=12)
58
  ```
59
 
60
  # Uses