Spaces:
Running
Running
mihalykiss
commited on
Commit
·
12c1c6b
1
Parent(s):
2160e26
examples
Browse files
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=
|
205 |
with gr.Tab("Human Text Examples"):
|
206 |
-
gr.Examples(Human_texts, inputs=
|
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 |
+
|