lvkaokao
commited on
Commit
·
fc4786a
1
Parent(s):
64294d2
modify Quantization config title ui
Browse files
app.py
CHANGED
|
@@ -260,7 +260,7 @@ with demo:
|
|
| 260 |
elem_id="filter-columns-precision",
|
| 261 |
)
|
| 262 |
with gr.Group() as config:
|
| 263 |
-
gr.HTML("""<p style='padding
|
| 264 |
with gr.Row():
|
| 265 |
filter_columns_computeDtype = gr.Dropdown(choices=[i.value.name for i in ComputeDtype], label="Compute Dtype", multiselect=False, value="float16", interactive=True,)
|
| 266 |
filter_columns_weightDtype = gr.Dropdown(choices=[i.value.name for i in WeightDtype], label="Weight Dtype", multiselect=False, value="int4", interactive=True,)
|
|
|
|
| 260 |
elem_id="filter-columns-precision",
|
| 261 |
)
|
| 262 |
with gr.Group() as config:
|
| 263 |
+
gr.HTML("""<p style='padding: 0.7rem; background: #fff; margin: 0; color: #6b7280;'>Quantization config</p>""")
|
| 264 |
with gr.Row():
|
| 265 |
filter_columns_computeDtype = gr.Dropdown(choices=[i.value.name for i in ComputeDtype], label="Compute Dtype", multiselect=False, value="float16", interactive=True,)
|
| 266 |
filter_columns_weightDtype = gr.Dropdown(choices=[i.value.name for i in WeightDtype], label="Weight Dtype", multiselect=False, value="int4", interactive=True,)
|