Update app.py
Browse files
app.py
CHANGED
@@ -197,6 +197,10 @@ def all(text: str):
|
|
197 |
classification_output[0], classification_output[1], classification_output[2],
|
198 |
pie_chart, bar_chart, wordcloud_image)
|
199 |
|
|
|
|
|
|
|
|
|
200 |
iface = gr.Interface(
|
201 |
fn=all,
|
202 |
inputs=gr.Textbox(lines=5, label="Input Text", placeholder="Write about how your breakfast went or anything else that happened or might happen to you ..."),
|
|
|
197 |
classification_output[0], classification_output[1], classification_output[2],
|
198 |
pie_chart, bar_chart, wordcloud_image)
|
199 |
|
200 |
+
examples = [
|
201 |
+
['Bevor ich meinen Hund kaufte bin ich immer alleine durch den Park gelaufen. Gestern war ich aber mit dem Hund losgelaufen. Das Wetter war sehr schön, nicht wie sonst im Winter. Ich weiß nicht genau. Mir fällt sonst nichts dazu ein. Wir trafen auf mehrere Spaziergänger. Ein Mann mit seinem Kind. Das Kind hat ein Eis gegessen.'],
|
202 |
+
]
|
203 |
+
|
204 |
iface = gr.Interface(
|
205 |
fn=all,
|
206 |
inputs=gr.Textbox(lines=5, label="Input Text", placeholder="Write about how your breakfast went or anything else that happened or might happen to you ..."),
|