Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import os
|
2 |
-
os.system("pip install gradio==4.31.5 pydantic==2.7.1 gradio_modal==0.0.
|
3 |
|
4 |
import gradio as gr
|
5 |
import pandas as pd
|
@@ -388,7 +388,7 @@ with demo:
|
|
388 |
interactive=True,
|
389 |
elem_id="filter-columns-precision",
|
390 |
)
|
391 |
-
with gr.
|
392 |
gr.HTML("""<p style='padding-bottom: 0.5rem; color: #6b7280; '>Quantization config</p>""")
|
393 |
with gr.Row():
|
394 |
filter_columns_computeDtype = gr.Dropdown(choices=[i.value.name for i in ComputeDtype], label="Compute Dtype", multiselect=False, value="All", interactive=True,)
|
|
|
1 |
import os
|
2 |
+
os.system("pip install gradio==4.31.5 pydantic==2.7.1 gradio_modal==0.0.3")
|
3 |
|
4 |
import gradio as gr
|
5 |
import pandas as pd
|
|
|
388 |
interactive=True,
|
389 |
elem_id="filter-columns-precision",
|
390 |
)
|
391 |
+
with gr.Checkbox() as config:
|
392 |
gr.HTML("""<p style='padding-bottom: 0.5rem; color: #6b7280; '>Quantization config</p>""")
|
393 |
with gr.Row():
|
394 |
filter_columns_computeDtype = gr.Dropdown(choices=[i.value.name for i in ComputeDtype], label="Compute Dtype", multiselect=False, value="All", interactive=True,)
|