Commit ·
9b219ba
1
Parent(s): b215183
Update app.py
Browse files
app.py
CHANGED
|
@@ -91,11 +91,9 @@ examples = [
|
|
| 91 |
iface = gr.Interface(
|
| 92 |
fn=detect_ai_content,
|
| 93 |
inputs=inputs + [file_input],
|
| 94 |
-
outputs=
|
| 95 |
title="AI-Generated Content Detector",
|
| 96 |
description="This app uses a simple stylometry analysis technique to estimate the percentage of AI-generated content in a given text.",
|
| 97 |
-
article="Stylometry Analysis",
|
| 98 |
-
article_link="https://en.wikipedia.org/wiki/Stylometry",
|
| 99 |
show_input=True,
|
| 100 |
show_output=True,)
|
| 101 |
iface.launch()
|
|
|
|
| 91 |
iface = gr.Interface(
|
| 92 |
fn=detect_ai_content,
|
| 93 |
inputs=inputs + [file_input],
|
| 94 |
+
outputs=[outputs,file_output],
|
| 95 |
title="AI-Generated Content Detector",
|
| 96 |
description="This app uses a simple stylometry analysis technique to estimate the percentage of AI-generated content in a given text.",
|
|
|
|
|
|
|
| 97 |
show_input=True,
|
| 98 |
show_output=True,)
|
| 99 |
iface.launch()
|