dagloop5 commited on
Commit
a39b5a0
·
verified ·
1 Parent(s): 25703ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -41,7 +41,10 @@ LORA_REPO = os.environ.get("H3_LORA_REPO", "dagloop5/LoRA")
41
  # Each entry is (repo, filename) so a LoRA can come from any repo, not just LORA_REPO — the two Lightx2v files
42
  # live in lightx2v/Minimax-h3-Turbo, not dagloop5/LoRA.
43
  LORA_FILES = {
44
- "lora1": (LORA_REPO, os.environ.get("H3_LORA_1_FILE", "minimax_h3_turbo_v4_step600_ema.safetensors")),
 
 
 
45
  "loraa": (LORA_REPO, os.environ.get("H3_LORA_A_FILE", "Mylo_lora_epoch31.safetensors")),
46
  "lorab": (LORA_REPO, os.environ.get("H3_LORA_B_FILE", "VBVR_H3_attn_only.safetensors")),
47
  "lorac": (LORA_REPO, os.environ.get("H3_LORA_C_FILE", "HM-AIO-V2.5.safetensors")),
@@ -62,7 +65,7 @@ LORA_FILES = {
62
  # Display names, keyed the same as LORA_FILES — used in the UI slider labels, the per-request report line, and
63
  # the status line's failure list. Keep these two dicts' keys in sync when adding a LoRA.
64
  LORA_LABELS = {
65
- "lora1": "Larryvrh-MiniMax-H3 Turbo LoRA",
66
  "loraa": "Anthro Enhancer",
67
  "lorab": "Reasoning Enhancer",
68
  "lorac": "HM-AIO", # hmmotion
@@ -1161,7 +1164,7 @@ with gr.Blocks(title="PlagueKind · MiniMax-H3") as demo:
1161
  report = gr.Markdown()
1162
  with gr.Accordion("Distilled / Turbo LoRAs", open=False):
1163
  lora_1_strength = gr.Slider(
1164
- label="Larryvrh-MiniMax-H3 Turbo LoRA",
1165
  minimum=0.0,
1166
  maximum=2.0,
1167
  step=0.05,
 
41
  # Each entry is (repo, filename) so a LoRA can come from any repo, not just LORA_REPO — the two Lightx2v files
42
  # live in lightx2v/Minimax-h3-Turbo, not dagloop5/LoRA.
43
  LORA_FILES = {
44
+ "lora1": (
45
+ os.environ.get("H3_LORA_I_REPO", "alibaba-pai/MiniMax-H3-Acc-LoRAs"),
46
+ os.environ.get("H3_LORA_I_FILE", "MiniMax-H3-FL2VA-Acc-8Step.safetensors"),
47
+ ),
48
  "loraa": (LORA_REPO, os.environ.get("H3_LORA_A_FILE", "Mylo_lora_epoch31.safetensors")),
49
  "lorab": (LORA_REPO, os.environ.get("H3_LORA_B_FILE", "VBVR_H3_attn_only.safetensors")),
50
  "lorac": (LORA_REPO, os.environ.get("H3_LORA_C_FILE", "HM-AIO-V2.5.safetensors")),
 
65
  # Display names, keyed the same as LORA_FILES — used in the UI slider labels, the per-request report line, and
66
  # the status line's failure list. Keep these two dicts' keys in sync when adding a LoRA.
67
  LORA_LABELS = {
68
+ "lora1": "MiniMax-H3-FL2VA-Acc-8Step",
69
  "loraa": "Anthro Enhancer",
70
  "lorab": "Reasoning Enhancer",
71
  "lorac": "HM-AIO", # hmmotion
 
1164
  report = gr.Markdown()
1165
  with gr.Accordion("Distilled / Turbo LoRAs", open=False):
1166
  lora_1_strength = gr.Slider(
1167
+ label="MiniMax-H3-FL2VA-Acc-8Step",
1168
  minimum=0.0,
1169
  maximum=2.0,
1170
  step=0.05,