Custum Lora exp 1
Browse files
app.py
CHANGED
@@ -222,23 +222,21 @@ with gr.Blocks() as demo:
|
|
222 |
|
223 |
generate_btn.click(
|
224 |
fn=generate_video,
|
225 |
-
inputs=[
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
seed
|
241 |
-
],
|
242 |
outputs=[output_video, used_seed]
|
243 |
)
|
244 |
|
|
|
222 |
|
223 |
generate_btn.click(
|
224 |
fn=generate_video,
|
225 |
+
inputs=[model_choice,
|
226 |
+
prompt,
|
227 |
+
negative_prompt,
|
228 |
+
lycoris_id,
|
229 |
+
lycoris_weight_name,
|
230 |
+
lycoris_scale,
|
231 |
+
scheduler_type,
|
232 |
+
flow_shift,
|
233 |
+
height,
|
234 |
+
width,
|
235 |
+
num_frames,
|
236 |
+
guidance_scale,
|
237 |
+
num_inference_steps,
|
238 |
+
output_fps,
|
239 |
+
seed],
|
|
|
|
|
240 |
outputs=[output_video, used_seed]
|
241 |
)
|
242 |
|