Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ with mp.tasks.text.TextClassifier.create_from_options(options) as classifier:
|
|
8 |
text = st.text_area("enter some text")
|
9 |
result = classifier.classify(text)
|
10 |
|
11 |
-
category = classifications[0].categories[0]
|
12 |
if text and category:
|
13 |
st.json({
|
14 |
"name": category.category_name,
|
|
|
8 |
text = st.text_area("enter some text")
|
9 |
result = classifier.classify(text)
|
10 |
|
11 |
+
category = result.classifications[0].categories[0]
|
12 |
if text and category:
|
13 |
st.json({
|
14 |
"name": category.category_name,
|