Updates
Browse files
app.py
CHANGED
|
@@ -179,7 +179,10 @@ def perform_deduplication(
|
|
| 179 |
raise e
|
| 180 |
|
| 181 |
with gr.Blocks() as demo:
|
| 182 |
-
gr.Markdown
|
|
|
|
|
|
|
|
|
|
| 183 |
|
| 184 |
deduplication_type = gr.Radio(
|
| 185 |
choices=["Single dataset", "Cross-dataset"],
|
|
|
|
| 179 |
raise e
|
| 180 |
|
| 181 |
with gr.Blocks() as demo:
|
| 182 |
+
# Replace 'gr.Markdown' with 'gr.Textbox' for 'status_output'
|
| 183 |
+
status_output = gr.Textbox().style(height=150)
|
| 184 |
+
result_output = gr.Markdown()
|
| 185 |
+
|
| 186 |
|
| 187 |
deduplication_type = gr.Radio(
|
| 188 |
choices=["Single dataset", "Cross-dataset"],
|