fix
Browse files
app.py
CHANGED
|
@@ -88,7 +88,7 @@ with gr.Blocks(css=CUSTOM_CSS) as demo:
|
|
| 88 |
sim_radio = gr.Radio(["jaccard", "embedding"], value="jaccard", label="Similarity metric")
|
| 89 |
go_btn = gr.Button("Build graph")
|
| 90 |
|
| 91 |
-
html_out = gr.HTML(elem_id="graph_html",
|
| 92 |
json_out = gr.File(label="Download graph.json")
|
| 93 |
|
| 94 |
go_btn.click(run, [repo_in, thresh, multi_cb, sim_radio], [html_out, json_out])
|
|
|
|
| 88 |
sim_radio = gr.Radio(["jaccard", "embedding"], value="jaccard", label="Similarity metric")
|
| 89 |
go_btn = gr.Button("Build graph")
|
| 90 |
|
| 91 |
+
html_out = gr.HTML(elem_id="graph_html", show_label=False)
|
| 92 |
json_out = gr.File(label="Download graph.json")
|
| 93 |
|
| 94 |
go_btn.click(run, [repo_in, thresh, multi_cb, sim_radio], [html_out, json_out])
|