Spaces:
Sleeping
Sleeping
sentiment
Browse files
app.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
-
|
| 5 |
-
|
| 6 |
|
| 7 |
pipe = pipeline('sentiment-analysis')
|
| 8 |
-
text = st.text_area('
|
| 9 |
|
| 10 |
if text:
|
| 11 |
out = pipe(text)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
+
x = st.slider('Select a value and I\'ll square it')
|
| 5 |
+
st.write(x, 'squared is', x * x)
|
| 6 |
|
| 7 |
pipe = pipeline('sentiment-analysis')
|
| 8 |
+
text = st.text_area('Enter some text and I\'ll run sentiment analysis on it')
|
| 9 |
|
| 10 |
if text:
|
| 11 |
out = pipe(text)
|