Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,23 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
|
|
3 |
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
6 |
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import mediapipe as mp
|
3 |
+
#from transformers import pipeline
|
4 |
|
5 |
+
base_options = mp.tasks.BaseOptions(model_asset_path="classifier.tflite")
|
6 |
+
options = mp.tasks.text.TextClassifierOptions(base_options=base_options)
|
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,
|
15 |
+
"score": category.score
|
16 |
+
})
|
17 |
+
|
18 |
+
#pipe = pipeline("sentiment-analysis")
|
19 |
+
#text = st.text_area("enter some text")
|
20 |
+
|
21 |
+
#if text:
|
22 |
+
# out = pipe(text)
|
23 |
+
# st.json(out)
|