Pringled commited on
Commit
50c3ede
·
1 Parent(s): 7dbe21e
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -179,7 +179,10 @@ def perform_deduplication(
179
  raise e
180
 
181
  with gr.Blocks() as demo:
182
- gr.Markdown("# Semantic Deduplication")
 
 
 
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"],