ErnestBeckham commited on
Commit
8e903ac
·
1 Parent(s): fa40466
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,9 +9,9 @@ def main():
9
  review = st.text_area('Enter the review')
10
 
11
  if st.button:
12
- if user_input:
13
  pipe = pipeline("text-classification", model='ErnestBeckham/gpt-patientconditionclassification', tokenizer='ErnestBeckham/gpt-patientconditionclassification')
14
- label = pipe(sample_text)
15
  st.subheader("Patient's Condition:")
16
  st.write(map[label[0]['label']])
17
 
 
9
  review = st.text_area('Enter the review')
10
 
11
  if st.button:
12
+ if review:
13
  pipe = pipeline("text-classification", model='ErnestBeckham/gpt-patientconditionclassification', tokenizer='ErnestBeckham/gpt-patientconditionclassification')
14
+ label = pipe(review)
15
  st.subheader("Patient's Condition:")
16
  st.write(map[label[0]['label']])
17