Commit
·
280890e
1
Parent(s):
5c1e17b
pwd
Browse files
app.py
CHANGED
@@ -333,7 +333,6 @@ def create_ui():
|
|
333 |
label="Hugging Face Repository Name",
|
334 |
placeholder="Enter the repository name to create",
|
335 |
value="Auto",
|
336 |
-
type="password"
|
337 |
)
|
338 |
quant_method = gr.CheckboxGroup(
|
339 |
choices=["Q2_K", "Q4_K", "IQ4_NL", "Q5_K_M", "Q6_K", "Q8_0"],
|
@@ -343,7 +342,8 @@ def create_ui():
|
|
343 |
hf_token = gr.Textbox(
|
344 |
label="Hugging Face Token",
|
345 |
placeholder="Enter your Hugging Face Token",
|
346 |
-
value="Auto"
|
|
|
347 |
)
|
348 |
convert_btn = gr.Button("Start Conversion", variant="primary")
|
349 |
with gr.Column():
|
|
|
333 |
label="Hugging Face Repository Name",
|
334 |
placeholder="Enter the repository name to create",
|
335 |
value="Auto",
|
|
|
336 |
)
|
337 |
quant_method = gr.CheckboxGroup(
|
338 |
choices=["Q2_K", "Q4_K", "IQ4_NL", "Q5_K_M", "Q6_K", "Q8_0"],
|
|
|
342 |
hf_token = gr.Textbox(
|
343 |
label="Hugging Face Token",
|
344 |
placeholder="Enter your Hugging Face Token",
|
345 |
+
value="Auto",
|
346 |
+
type="password"
|
347 |
)
|
348 |
convert_btn = gr.Button("Start Conversion", variant="primary")
|
349 |
with gr.Column():
|