Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -733,6 +733,10 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
|
|
| 733 |
label="Anthro Enhancer strength",
|
| 734 |
minimum=0.0, maximum=2.0, value=0.0, step=0.01
|
| 735 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 736 |
general_strength = gr.Slider(
|
| 737 |
label="Reasoning Enhancer strength",
|
| 738 |
minimum=0.0, maximum=2.0, value=0.0, step=0.01
|
|
@@ -826,7 +830,7 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
|
|
| 826 |
|
| 827 |
prepare_lora_btn.click(
|
| 828 |
fn=prepare_lora_cache,
|
| 829 |
-
inputs=[distilled_strength, pose_strength, general_strength, motion_strength, dreamlay_strength, mself_strength, dramatic_strength, fluid_strength, liquid_strength, demopose_strength, voice_strength, realism_strength, transition_strength, physics_strength, reasoning_strength, twostep_strength],
|
| 830 |
outputs=[lora_status],
|
| 831 |
)
|
| 832 |
|
|
@@ -835,7 +839,7 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
|
|
| 835 |
inputs=[
|
| 836 |
first_image, last_image, prompt, duration, gpu_duration, enhance_prompt,
|
| 837 |
seed, randomize_seed, height, width,
|
| 838 |
-
distilled_strength, pose_strength, general_strength, motion_strength, dreamlay_strength, mself_strength, dramatic_strength, fluid_strength, liquid_strength, demopose_strength, voice_strength, realism_strength, transition_strength, physics_strength, reasoning_strength, twostep_strength,
|
| 839 |
],
|
| 840 |
outputs=[output_video, seed],
|
| 841 |
)
|
|
|
|
| 733 |
label="Anthro Enhancer strength",
|
| 734 |
minimum=0.0, maximum=2.0, value=0.0, step=0.01
|
| 735 |
)
|
| 736 |
+
twod_strength = gr.Slider(
|
| 737 |
+
label="2D animation style strength",
|
| 738 |
+
minimum=0.0, maximum=2.0, value=0.0, step=0.01
|
| 739 |
+
)
|
| 740 |
general_strength = gr.Slider(
|
| 741 |
label="Reasoning Enhancer strength",
|
| 742 |
minimum=0.0, maximum=2.0, value=0.0, step=0.01
|
|
|
|
| 830 |
|
| 831 |
prepare_lora_btn.click(
|
| 832 |
fn=prepare_lora_cache,
|
| 833 |
+
inputs=[distilled_strength, pose_strength, twod_strength, general_strength, motion_strength, dreamlay_strength, mself_strength, dramatic_strength, fluid_strength, liquid_strength, demopose_strength, voice_strength, realism_strength, transition_strength, physics_strength, reasoning_strength, twostep_strength],
|
| 834 |
outputs=[lora_status],
|
| 835 |
)
|
| 836 |
|
|
|
|
| 839 |
inputs=[
|
| 840 |
first_image, last_image, prompt, duration, gpu_duration, enhance_prompt,
|
| 841 |
seed, randomize_seed, height, width,
|
| 842 |
+
distilled_strength, pose_strength, twod_strength, general_strength, motion_strength, dreamlay_strength, mself_strength, dramatic_strength, fluid_strength, liquid_strength, demopose_strength, voice_strength, realism_strength, transition_strength, physics_strength, reasoning_strength, twostep_strength,
|
| 843 |
],
|
| 844 |
outputs=[output_video, seed],
|
| 845 |
)
|