SpringDai commited on
Commit
0702e94
·
verified ·
1 Parent(s): f7856ab

fix error

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -5,7 +5,7 @@ import streamlit as st
5
  import streamlit as st
6
  from transformers import pipeline
7
 
8
- pipe = pipleline('sentiment-analysis')
9
  text = st.text_area('enter some text!')
10
 
11
  if text:
 
5
  import streamlit as st
6
  from transformers import pipeline
7
 
8
+ pipe = pipeline('sentiment-analysis')
9
  text = st.text_area('enter some text!')
10
 
11
  if text: