ngxson HF staff commited on
Commit
2a26a04
·
verified ·
1 Parent(s): 6893def

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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="Search for repository on Huggingface",
145
  search_type="model",
146
  )
147
 
148
  base_model_id = HuggingfaceHubSearch(
149
- label="Base tuned model repository",
150
- placeholder="Search for repository on Huggingface",
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 15 minutes</b>, depending on how big the model is.",
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