Update app.py
Browse files
app.py
CHANGED
@@ -141,13 +141,13 @@ with gr.Blocks(css=css) as demo:
|
|
141 |
|
142 |
ft_model_id = HuggingfaceHubSearch(
|
143 |
label="Fine tuned model repository",
|
144 |
-
placeholder="
|
145 |
search_type="model",
|
146 |
)
|
147 |
|
148 |
base_model_id = HuggingfaceHubSearch(
|
149 |
-
label="Base
|
150 |
-
placeholder="
|
151 |
search_type="model",
|
152 |
)
|
153 |
|
@@ -178,7 +178,7 @@ with gr.Blocks(css=css) as demo:
|
|
178 |
gr.Markdown(label="output"),
|
179 |
],
|
180 |
title="Convert fine tuned model into LoRA with mergekit-extract-lora",
|
181 |
-
description="The space takes a fine tuned model, a base model, then make a PEFT-compatible LoRA adapter based on the difference between 2 models.<br/><br/>NOTE: Each conversion takes about <b>5 to
|
182 |
api_name=False
|
183 |
)
|
184 |
|
|
|
141 |
|
142 |
ft_model_id = HuggingfaceHubSearch(
|
143 |
label="Fine tuned model repository",
|
144 |
+
placeholder="Fine tuned model",
|
145 |
search_type="model",
|
146 |
)
|
147 |
|
148 |
base_model_id = HuggingfaceHubSearch(
|
149 |
+
label="Base model repository",
|
150 |
+
placeholder="Base model",
|
151 |
search_type="model",
|
152 |
)
|
153 |
|
|
|
178 |
gr.Markdown(label="output"),
|
179 |
],
|
180 |
title="Convert fine tuned model into LoRA with mergekit-extract-lora",
|
181 |
+
description="The space takes a fine tuned model, a base model, then make a PEFT-compatible LoRA adapter based on the difference between 2 models.<br/><br/>NOTE: Each conversion takes about <b>5 to 20 minutes</b>, depending on how big the model is.",
|
182 |
api_name=False
|
183 |
)
|
184 |
|