seemapatil commited on
Commit
5332ae7
·
1 Parent(s): b72dc90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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