mihalykiss commited on
Commit
12c1c6b
·
1 Parent(s): 2160e26
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -201,10 +201,10 @@ with iface:
201
  result_output = gr.Markdown("**Results will appear here...**", elem_id="result_output_box")
202
  text_input.change(classify_text, inputs=text_input, outputs=result_output)
203
  with gr.Tab("AI Text Examples"):
204
- gr.Examples(AI_texts, inputs=textbox_input, outputs=label_output)
205
  with gr.Tab("Human Text Examples"):
206
- gr.Examples(Human_texts, inputs=textbox_input, outputs=label_output)
207
  gr.Markdown(bottom_text, elem_id="bottom_text")
208
 
209
  iface.launch(share=True)
210
-
 
201
  result_output = gr.Markdown("**Results will appear here...**", elem_id="result_output_box")
202
  text_input.change(classify_text, inputs=text_input, outputs=result_output)
203
  with gr.Tab("AI Text Examples"):
204
+ gr.Examples(AI_texts, inputs=text_input)
205
  with gr.Tab("Human Text Examples"):
206
+ gr.Examples(Human_texts, inputs=text_input)
207
  gr.Markdown(bottom_text, elem_id="bottom_text")
208
 
209
  iface.launch(share=True)
210
+