Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kblmike
/
search-app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
kblmike
commited on
Feb 3, 2023
Commit
163c811
·
1 Parent(s):
2f150b6
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import streamlit as st
2
+
from transformers import pipline
3
+
pipe=pipeline('sentiment-analysis')
4
+
text=st.text_area('enter some text!')
5
+
6
+
if text:
7
+
out = pipe(text)
8
+
st.json(out)