dagloop5 commited on
Commit
65210f0
·
verified ·
1 Parent(s): a8764e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -306,7 +306,7 @@ mself_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="Furry Hyper Mastu
306
  dramatic_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="LTX-2.3 - Orgasm.safetensors") # "[He | She] is having am orgasm." (am or an?)
307
  fluid_lora_path = hf_hub_download(repo_id="valiantcat/LTX-2.3-Transition-LORA", filename="ltx2.3-transition.safetensors") # cr3ampi3 animation., missionary animation, doggystyle bouncy animation, double penetration animation
308
  liquid_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="liquid_wet_dr1pp_ltx2_v1.0_scaled.safetensors") # wet dr1pp
309
- demopose_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="clapping-cheeks-audio-v001-alpha.safetensors") # skin slapping against skin
310
 
311
  print(f"Pose LoRA: {pose_lora_path}")
312
  print(f"General LoRA: {general_lora_path}")
@@ -723,7 +723,7 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
723
  enhance_prompt = gr.Checkbox(label="Enhance Prompt", value=False)
724
  high_res = gr.Checkbox(label="High Resolution", value=True)
725
  with gr.Column():
726
- gr.Markdown("### LoRA adapter strengths (set to 0 to disable)")
727
  pose_strength = gr.Slider(
728
  label="Anthro Enhancer strength",
729
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
@@ -753,11 +753,11 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
753
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
754
  )
755
  liquid_strength = gr.Slider(
756
- label="Liquid Helper strength",
757
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
758
  )
759
  demopose_strength = gr.Slider(
760
- label="Demopose Helper strength",
761
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
762
  )
763
  prepare_lora_btn = gr.Button("Prepare / Load LoRA Cache", variant="secondary")
@@ -770,10 +770,10 @@ with gr.Blocks(title="LTX-2.3 Distilled") as demo:
770
  with gr.Column():
771
  output_video = gr.Video(label="Generated Video", autoplay=False)
772
  gpu_duration = gr.Slider(
773
- label="ZeroGPU duration (seconds)",
774
- minimum=40.0,
775
  maximum=240.0,
776
- value=85.0,
777
  step=1.0,
778
  )
779
 
 
306
  dramatic_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="LTX-2.3 - Orgasm.safetensors") # "[He | She] is having am orgasm." (am or an?)
307
  fluid_lora_path = hf_hub_download(repo_id="valiantcat/LTX-2.3-Transition-LORA", filename="ltx2.3-transition.safetensors") # cr3ampi3 animation., missionary animation, doggystyle bouncy animation, double penetration animation
308
  liquid_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="liquid_wet_dr1pp_ltx2_v1.0_scaled.safetensors") # wet dr1pp
309
+ demopose_lora_path = hf_hub_download(repo_id=LORA_REPO, filename="hentai_voice_ltx23.safetensors")
310
 
311
  print(f"Pose LoRA: {pose_lora_path}")
312
  print(f"General LoRA: {general_lora_path}")
 
723
  enhance_prompt = gr.Checkbox(label="Enhance Prompt", value=False)
724
  high_res = gr.Checkbox(label="High Resolution", value=True)
725
  with gr.Column():
726
+ gr.Markdown("### LoRA adapter strengths (set to 0 to disable; slow and WIP)")
727
  pose_strength = gr.Slider(
728
  label="Anthro Enhancer strength",
729
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
 
753
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
754
  )
755
  liquid_strength = gr.Slider(
756
+ label="Transition Helper strength",
757
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
758
  )
759
  demopose_strength = gr.Slider(
760
+ label="Audio Helper strength",
761
  minimum=0.0, maximum=2.0, value=0.0, step=0.01
762
  )
763
  prepare_lora_btn = gr.Button("Prepare / Load LoRA Cache", variant="secondary")
 
770
  with gr.Column():
771
  output_video = gr.Video(label="Generated Video", autoplay=False)
772
  gpu_duration = gr.Slider(
773
+ label="ZeroGPU duration (seconds; 10 second Img2Vid with 1024x1024 and LoRAs = ~70)",
774
+ minimum=30.0,
775
  maximum=240.0,
776
+ value=75.0,
777
  step=1.0,
778
  )
779