elgamous commited on
Commit
d35b39f
·
1 Parent(s): f2effc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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,