Spaces:
Build error
Build error
Commit
·
5332ae7
1
Parent(s):
b72dc90
Update app.py
Browse files
app.py
CHANGED
@@ -4,4 +4,5 @@ pipe = pipeline ('text-classification')
|
|
4 |
text = st.text_area('enter some text!')
|
5 |
if text:
|
6 |
out = pipe(text)
|
7 |
-
st.json(out)
|
|
|
|
4 |
text = st.text_area('enter some text!')
|
5 |
if text:
|
6 |
out = pipe(text)
|
7 |
+
st.json(out)
|
8 |
+
streamlit run app.py
|