Commit
·
8e903ac
1
Parent(s):
fa40466
updated
Browse files
app.py
CHANGED
@@ -9,9 +9,9 @@ def main():
|
|
9 |
review = st.text_area('Enter the review')
|
10 |
|
11 |
if st.button:
|
12 |
-
if
|
13 |
pipe = pipeline("text-classification", model='ErnestBeckham/gpt-patientconditionclassification', tokenizer='ErnestBeckham/gpt-patientconditionclassification')
|
14 |
-
label = pipe(
|
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 |
|