Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -112,17 +112,17 @@ with gr.Blocks(css=css) as demo:
|
|
| 112 |
)
|
| 113 |
|
| 114 |
q_method = gr.Dropdown(
|
| 115 |
-
["Q3_k_s", "Q3_k_m", "Q3_k_l", "Q4_0", "Q4_1", "Q4_k_s", "Q4_k_m", "Q5_0", "Q5_1", "Q5_k_s", "Q5_k_m", "Q6_k","Q8_0"],
|
| 116 |
label="Quantization Method",
|
| 117 |
info="Ollama Quantization Types",
|
| 118 |
-
value="
|
| 119 |
filterable=False,
|
| 120 |
visible=True
|
| 121 |
)
|
| 122 |
latest = gr.Checkbox(
|
| 123 |
value=False,
|
| 124 |
-
label="
|
| 125 |
-
info="Copy Model to :latest"
|
| 126 |
)
|
| 127 |
iface = gr.Interface(
|
| 128 |
fn=process_model,
|
|
|
|
| 112 |
)
|
| 113 |
|
| 114 |
q_method = gr.Dropdown(
|
| 115 |
+
["", "Q3_k_s", "Q3_k_m", "Q3_k_l", "Q4_0", "Q4_1", "Q4_k_s", "Q4_k_m", "Q5_0", "Q5_1", "Q5_k_s", "Q5_k_m", "Q6_k","Q8_0"],
|
| 116 |
label="Quantization Method",
|
| 117 |
info="Ollama Quantization Types",
|
| 118 |
+
value="",
|
| 119 |
filterable=False,
|
| 120 |
visible=True
|
| 121 |
)
|
| 122 |
latest = gr.Checkbox(
|
| 123 |
value=False,
|
| 124 |
+
label="Latest",
|
| 125 |
+
info="Copy Model to Ollama Library with the :latest tag"
|
| 126 |
)
|
| 127 |
iface = gr.Interface(
|
| 128 |
fn=process_model,
|