Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,7 @@ text = st.text_input("Enter words")
|
|
8 |
|
9 |
if text is not None:
|
10 |
candidate_labels = ['lifestyle', 'technology', 'entertainment', 'news']
|
11 |
-
res = classifier(
|
12 |
|
13 |
-
|
|
|
|
8 |
|
9 |
if text is not None:
|
10 |
candidate_labels = ['lifestyle', 'technology', 'entertainment', 'news']
|
11 |
+
res = classifier(text, candidate_labels)
|
12 |
|
13 |
+
for index, name in enumerate(res['labels']):
|
14 |
+
st.text(f"{name} : {round(res['scores'][index], 3) * 100}%")
|