mrcuddle commited on
Commit
925f28f
·
verified ·
1 Parent(s): e88dd14

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -18,16 +18,18 @@ iface = gr.Interface(
18
  gr.Slider(minimum=0, maximum=1, value=0.5, label="Dropout Probability"),
19
  gr.Slider(minimum=0, maximum=10, value=3, label="Scaling Factor (Lambda)"),
20
  gr.Textbox(label="HuggingFace Token (optional)"),
21
- gr.Textbox(label="HuggingFace Repo (optional)"),
22
  gr.Textbox(label="Commit Message (optional)", value="Upload merged model"),
23
  gr.Checkbox(label="Upload to HuggingFace Hub"),
24
  ],
25
  outputs="text",
26
  title="Safetensors Model Merger",
27
  description="""
28
- Combine any two models using a Super Mario merge(DARE).
29
- Based on: https://github.com/martyn/safetensors-merge-supermario
30
- Works with:
 
 
31
  - Stable Diffusion (1.5, XL/XL Turbo)
32
  - LLMs(Mistral, Llama, etc)
33
  - LoRas(must be same size)
 
18
  gr.Slider(minimum=0, maximum=1, value=0.5, label="Dropout Probability"),
19
  gr.Slider(minimum=0, maximum=10, value=3, label="Scaling Factor (Lambda)"),
20
  gr.Textbox(label="HuggingFace Token (optional)"),
21
+ gr.Textbox(label="New Model Name (without your username) (optional)"),
22
  gr.Textbox(label="Commit Message (optional)", value="Upload merged model"),
23
  gr.Checkbox(label="Upload to HuggingFace Hub"),
24
  ],
25
  outputs="text",
26
  title="Safetensors Model Merger",
27
  description="""
28
+ - Combine any two models using a Super Mario merge(DARE).
29
+
30
+ - Based on: https://github.com/martyn/safetensors-merge-supermario.
31
+
32
+ - Works with:
33
  - Stable Diffusion (1.5, XL/XL Turbo)
34
  - LLMs(Mistral, Llama, etc)
35
  - LoRas(must be same size)