-
Notifications
You must be signed in to change notification settings - Fork 124
/
sample.py
42 lines (31 loc) · 1.11 KB
/
sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from videosys import LatteConfig, VideoSysEngine
def run_base():
# change num_gpus for multi-gpu inference
config = LatteConfig("maxin-cn/Latte-1", num_gpus=1)
engine = VideoSysEngine(config)
prompt = "Sunset over the sea."
# video size is fixed to 16 frames, 512x512.
# seed=-1 means random seed. >0 means fixed seed.
video = engine.generate(
prompt=prompt,
guidance_scale=7.5,
num_inference_steps=50,
seed=-1,
).video[0]
engine.save_video(video, f"./outputs/{prompt}.mp4")
def run_low_mem():
config = LatteConfig("maxin-cn/Latte-1", cpu_offload=True)
engine = VideoSysEngine(config)
prompt = "Sunset over the sea."
video = engine.generate(prompt).video[0]
engine.save_video(video, f"./outputs/{prompt}.mp4")
def run_pab():
config = LatteConfig("maxin-cn/Latte-1", enable_pab=True)
engine = VideoSysEngine(config)
prompt = "Sunset over the sea."
video = engine.generate(prompt).video[0]
engine.save_video(video, f"./outputs/{prompt}.mp4")
if __name__ == "__main__":
run_base()
# run_low_mem()
# run_pab()