Spaces:
Runtime error
Runtime error
data-silence
commited on
Commit
•
58f9bf8
1
Parent(s):
930bf76
Update app.py
Browse files
app.py
CHANGED
@@ -34,13 +34,13 @@ def predict(text):
|
|
34 |
# Создание интерфейса Gradio
|
35 |
iface = gr.Interface(
|
36 |
fn=predict,
|
37 |
-
inputs=gr.Textbox(lines=5, label="Введите текст новости"),
|
38 |
outputs=[
|
39 |
-
gr.Label(label="Предсказанная категория"),
|
40 |
-
gr.Label(label="Вероятности категорий")
|
41 |
],
|
42 |
-
title="Классификатор новостей",
|
43 |
-
description="Введите текст
|
44 |
)
|
45 |
|
46 |
iface.launch()
|
|
|
34 |
# Создание интерфейса Gradio
|
35 |
iface = gr.Interface(
|
36 |
fn=predict,
|
37 |
+
inputs=gr.Textbox(lines=5, label="Enter news text | Введите текст новости"),
|
38 |
outputs=[
|
39 |
+
gr.Label(label="Predicted category | Предсказанная категория"),
|
40 |
+
gr.Label(label="Category probabilities | Вероятности категорий")
|
41 |
],
|
42 |
+
title="News Classifier | Классификатор новостей",
|
43 |
+
description="Enter the news text in any language and the model will predict its category. | Введите текст новости на любом языке, и модель предскажет её категорию"
|
44 |
)
|
45 |
|
46 |
iface.launch()
|