elgamous commited on
Commit
8a6d1ee
·
1 Parent(s): 6dd6f1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -6
app.py CHANGED
@@ -1,9 +1,23 @@
1
  import streamlit as st
2
- from transformers import pipeline
 
3
 
4
- pipe = pipeline("sentiment-analysis")
5
- text = st.text_area("enter some text")
 
 
 
6
 
7
- if text:
8
- out = pipe(text)
9
- st.json(out)
 
 
 
 
 
 
 
 
 
 
 
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)