Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -940,9 +940,9 @@ def inference(mode,image_uploader,file_uploader):
|
|
940 |
return styled_ko_deplot_table, styled_aihub_deplot_table, styled_unichart_table,ko_deplot_label_table,aihub_deplot_label_table,unichart_label_table,ko_deplot_score_table, aihub_deplot_score_table, unichart_score_table
|
941 |
def interface_selector(selector):
|
942 |
if selector == "μ΄λ―Έμ§ μ
λ‘λ":
|
943 |
-
return gr.update(visible=True),gr.update(visible=False),gr.State("image_upload"),gr.update(visible=False),gr.update(visible=False)
|
944 |
elif selector == "νμΌ μ
λ‘λ":
|
945 |
-
return gr.update(visible=False),gr.update(visible=True),gr.State("file_upload"), gr.update(visible=True),gr.update(visible=True)
|
946 |
|
947 |
def file_selector(selector):
|
948 |
if selector == "low score μ°¨νΈ":
|
@@ -1065,7 +1065,6 @@ with gr.Blocks(css=css) as iface:
|
|
1065 |
# global image_uploader,file_uploader
|
1066 |
image_uploader= gr.File(file_count="single",file_types=["image"],visible=True)
|
1067 |
file_uploader= gr.File(file_count="single", file_types=[".txt"], visible=False)
|
1068 |
-
file_uploader=gr.File("./new_top_20_percent_images.txt")
|
1069 |
file_upload_option=gr.Radio(choices=["low score μ°¨νΈ","high score μ°¨νΈ"],label="νμΌ μ
λ‘λ μ΅μ
",visible=False)
|
1070 |
chart_type = gr.Dropdown(["μΌλ° κ°λ‘ λ§λν","λμ κ°λ‘ λ§λν","100% κΈ°μ€ λμ κ°λ‘ λ§λν", "μΌλ° μΈλ‘ λ§λν","λμ μΈλ‘ λ§λν","100% κΈ°μ€ λμ μΈλ‘ λ§λν","μ ν", "μν", "κΈ°ν λ°©μ¬ν", "κΈ°ν νΌν©ν", "μ 체"], label="Chart Type", value="all")
|
1071 |
model_type=gr.Dropdown(["vaiv_deplot","unichart","all"],label="model",multiselect=True)
|
@@ -1098,7 +1097,7 @@ with gr.Blocks(css=css) as iface:
|
|
1098 |
upload_option.change(
|
1099 |
interface_selector,
|
1100 |
inputs=[upload_option],
|
1101 |
-
outputs=[image_uploader, file_uploader, mode, image_name,file_upload_option]
|
1102 |
)
|
1103 |
|
1104 |
file_upload_option.change(
|
|
|
940 |
return styled_ko_deplot_table, styled_aihub_deplot_table, styled_unichart_table,ko_deplot_label_table,aihub_deplot_label_table,unichart_label_table,ko_deplot_score_table, aihub_deplot_score_table, unichart_score_table
|
941 |
def interface_selector(selector):
|
942 |
if selector == "μ΄λ―Έμ§ μ
λ‘λ":
|
943 |
+
return gr.update(visible=True),gr.update(visible=False),gr.State("image_upload"),gr.update(visible=False),gr.update(visible=False),gr.File("./new_top_20_percent_images.txt"),"high score μ°¨νΈ"
|
944 |
elif selector == "νμΌ μ
λ‘λ":
|
945 |
+
return gr.update(visible=False),gr.update(visible=True),gr.State("file_upload"), gr.update(visible=True),gr.update(visible=True),gr.File("./new_top_20_percent_images.txt"),"high score μ°¨νΈ"
|
946 |
|
947 |
def file_selector(selector):
|
948 |
if selector == "low score μ°¨νΈ":
|
|
|
1065 |
# global image_uploader,file_uploader
|
1066 |
image_uploader= gr.File(file_count="single",file_types=["image"],visible=True)
|
1067 |
file_uploader= gr.File(file_count="single", file_types=[".txt"], visible=False)
|
|
|
1068 |
file_upload_option=gr.Radio(choices=["low score μ°¨νΈ","high score μ°¨νΈ"],label="νμΌ μ
λ‘λ μ΅μ
",visible=False)
|
1069 |
chart_type = gr.Dropdown(["μΌλ° κ°λ‘ λ§λν","λμ κ°λ‘ λ§λν","100% κΈ°μ€ λμ κ°λ‘ λ§λν", "μΌλ° μΈλ‘ λ§λν","λμ μΈλ‘ λ§λν","100% κΈ°μ€ λμ μΈλ‘ λ§λν","μ ν", "μν", "κΈ°ν λ°©μ¬ν", "κΈ°ν νΌν©ν", "μ 체"], label="Chart Type", value="all")
|
1070 |
model_type=gr.Dropdown(["vaiv_deplot","unichart","all"],label="model",multiselect=True)
|
|
|
1097 |
upload_option.change(
|
1098 |
interface_selector,
|
1099 |
inputs=[upload_option],
|
1100 |
+
outputs=[image_uploader, file_uploader, mode, image_name,file_upload_option,file_uploader,file_upload_option]
|
1101 |
)
|
1102 |
|
1103 |
file_upload_option.change(
|