Muhammad Taqi Raza commited on
Commit
3f723fb
·
1 Parent(s): 927536c

revised config.yaml

Browse files
Files changed (2) hide show
  1. config.yaml +2 -2
  2. gradio_batch.py +2 -2
config.yaml CHANGED
@@ -1,4 +1,4 @@
1
  ZoomIn:
2
- target_pose: [0, 0.0, 0.2, 0.0, 0.0]
3
  Pan:
4
- target_pose: [0, 0.0, 0.0, 0.2, 0.0]
 
1
  ZoomIn:
2
+ target_pose: "0 0.0 0.2 0.0 0.0"
3
  Pan:
4
+ target_pose: "0 0.0 0.0 0.2 0.0"
gradio_batch.py CHANGED
@@ -133,8 +133,8 @@ def run_batch_process(progress=gr.Progress()):
133
  f.write(logs1 or "")
134
 
135
  final_video, logs2 = inference(
136
- fps=params["fps"],
137
- num_frames=params["num_frames"],
138
  controlnet_weights=params.get("controlnet_weights", 0.5),
139
  controlnet_guidance_start=params.get("controlnet_guidance_start", 0.0),
140
  controlnet_guidance_end=params.get("controlnet_guidance_end", 0.5),
 
133
  f.write(logs1 or "")
134
 
135
  final_video, logs2 = inference(
136
+ fps=params.get("fps"),
137
+ num_frames=params.get("num_frames"),
138
  controlnet_weights=params.get("controlnet_weights", 0.5),
139
  controlnet_guidance_start=params.get("controlnet_guidance_start", 0.0),
140
  controlnet_guidance_end=params.get("controlnet_guidance_end", 0.5),