Reem333 commited on
Commit
ad01cb8
·
verified ·
1 Parent(s): 679a421

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -8
app.py CHANGED
@@ -66,7 +66,7 @@ with st.sidebar:
66
  st.title("Check Your Paper Now!")
67
 
68
  # Main content
69
- option = st.radio("Select input type:",("Text", "PDF"))
70
 
71
  if option == "Text":
72
  title_input = st.text_area("Enter Title:")
@@ -82,20 +82,31 @@ if option == "Text":
82
  selected_category = custom_category if custom_category else "Other"
83
 
84
  combined_text = f"{title_input} [SEP] {keywords_input} [SEP] {abstract_input} [SEP] {selected_category} [SEP] {affiliations_input}"
85
- if st.button("Predict"):
86
- if not any([title_input, abstract_input,keywords_input, affiliations_input]):
87
  st.warning("Please enter paper text.")
88
  else:
89
  with st.spinner("Predicting..."):
90
- predicted_class = predict_class(combined_text)
91
- if predicted_class is not None:
 
92
  class_labels = ["Level 1", "Level 2", "Level 3", "Level 4"]
93
 
94
- st.text("Predicted Class:")
95
  for i, label in enumerate(class_labels):
96
- if i == predicted_class:
97
  st.markdown(
98
- f'<div style="background-color: {class_colors[predicted_class]}; padding: 10px; border-radius: 5px; color: white; font-weight: bold;">{label}</div>',
 
 
 
 
 
 
 
 
 
 
99
  unsafe_allow_html=True
100
  )
101
  else:
 
66
  st.title("Check Your Paper Now!")
67
 
68
  # Main content
69
+ option = st.radio("Select input type:",("Text"))
70
 
71
  if option == "Text":
72
  title_input = st.text_area("Enter Title:")
 
82
  selected_category = custom_category if custom_category else "Other"
83
 
84
  combined_text = f"{title_input} [SEP] {keywords_input} [SEP] {abstract_input} [SEP] {selected_category} [SEP] {affiliations_input}"
85
+ if st.button("Predict"):
86
+ if not any([title_input, abstract_input, keywords_input, full_text_input, affiliations_input]):
87
  st.warning("Please enter paper text.")
88
  else:
89
  with st.spinner("Predicting..."):
90
+ longformer_class = predict_class(combined_text, longformer_model, longformer_tokenizer)
91
+ bert_class = predict_class(combined_text, bert_model, bert_tokenizer)
92
+ if longformer_class is not None and bert_class is not None:
93
  class_labels = ["Level 1", "Level 2", "Level 3", "Level 4"]
94
 
95
+ st.text("Longformer Predicted Class:")
96
  for i, label in enumerate(class_labels):
97
+ if i == longformer_class:
98
  st.markdown(
99
+ f'<div style="background-color: {class_colors[longformer_class]}; padding: 10px; border-radius: 5px; color: white; font-weight: bold;">{label}</div>',
100
+ unsafe_allow_html=True
101
+ )
102
+ else:
103
+ st.text(label)
104
+
105
+ st.text("BERT Predicted Class:")
106
+ for i, label in enumerate(class_labels):
107
+ if i == bert_class:
108
+ st.markdown(
109
+ f'<div style="background-color: {class_colors[bert_class]}; padding: 10px; border-radius: 5px; color: white; font-weight: bold;">{label}</div>',
110
  unsafe_allow_html=True
111
  )
112
  else: