kdevoe commited on
Commit
a3814ec
1 Parent(s): 6fbe5f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,6 +7,6 @@ pipe = pipeline('sentiment-analysis')
7
  text = st.text_area('enter some text: ')
8
 
9
  if text:
10
- out = pipe(text)
11
- inference()
12
  st.json(out)
 
7
  text = st.text_area('enter some text: ')
8
 
9
  if text:
10
+ #out = pipe(text)
11
+ out = inference(text)
12
  st.json(out)