mattpat commited on
Commit
82417fb
1 Parent(s): c5fee4d

new update

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,8 +14,8 @@ pipe_one = pipeline('text-classification')
14
  test_one = st.text_area('enter more text:')
15
 
16
  if test:
17
- out = pipe(test)
18
- st.json(out)
19
 
20
 
21
 
 
14
  test_one = st.text_area('enter more text:')
15
 
16
  if test:
17
+ out_one = pipe_one(test)
18
+ st.json(out_one)
19
 
20
 
21