Safetensors
Bujiazi commited on
Commit
484cfab
·
verified ·
1 Parent(s): c115b00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -71,10 +71,12 @@ width = 1280
71
  num_frames = 81
72
  num_inference_steps = 50
73
  guidance_scale = 5.0
 
74
 
75
- prompt = "Two anthropomorphic cats in comfy boxing gear and bright gloves fight intensely on a spotlighted stage."
76
  negative_prompt = "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走"
77
 
 
78
  output = pipe(
79
  prompt=prompt,
80
  negative_prompt=negative_prompt,
@@ -83,6 +85,7 @@ output = pipe(
83
  num_frames=num_frames,
84
  guidance_scale=guidance_scale,
85
  num_inference_steps=num_inference_steps,
 
86
  ).frames[0]
87
  export_to_video(output, "hpsd_test.mp4", fps=16)
88
  ```
 
71
  num_frames = 81
72
  num_inference_steps = 50
73
  guidance_scale = 5.0
74
+ base_seed = 42
75
 
76
+ prompt = "A sports car speeding along a winding coastal road at sunset. Dynamic low-angle tracking shot, realistic reflections, dramatic clouds, subtle motion blur, cinematic composition."
77
  negative_prompt = "色调艳丽,过曝,静态,细节模糊不清,字幕,风格,作品,画作,画面,静止,整体发灰,最差质量,低质量,JPEG压缩残留,丑陋的,残缺的,多余的手指,画得不好的手部,画得不好的脸部,畸形的,毁容的,形态畸形的肢体,手指融合,静止不动的画面,杂乱的背景,三条腿,背景人很多,倒着走"
78
 
79
+ generator = torch.Generator(device=device).manual_seed(base_seed)
80
  output = pipe(
81
  prompt=prompt,
82
  negative_prompt=negative_prompt,
 
85
  num_frames=num_frames,
86
  guidance_scale=guidance_scale,
87
  num_inference_steps=num_inference_steps,
88
+ generator=generator,
89
  ).frames[0]
90
  export_to_video(output, "hpsd_test.mp4", fps=16)
91
  ```