RMHalak commited on
Commit
fe8c77c
·
verified ·
1 Parent(s): 6676090

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,6 +6,6 @@ with open('./trained_model.pkl', 'rb') as file:
6
 
7
  input = st.text_area('Enter text')
8
 
9
- if text:
10
  out = loaded_model(input)
11
  st.json(out[0][0])
 
6
 
7
  input = st.text_area('Enter text')
8
 
9
+ if input:
10
  out = loaded_model(input)
11
  st.json(out[0][0])