Markins commited on
Commit
8fc63ee
β€’
1 Parent(s): ca70272

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -60,15 +60,15 @@ def model_prediction(abstract, model, tokenizer, label_encoder):
60
  def main():
61
 
62
  st.set_page_config(
63
- page_title="Sequential Text Classfication Using Deep Sequencing Model",
64
  page_icon="πŸ“„",
65
  layout="wide",
66
  initial_sidebar_state="expanded"
67
  )
68
 
69
- st.title('Sequential Text Classification Using Deep Sequencing Model πŸ“„ πŸ”₯')
70
  st.caption('A custom NLP classification model based on a transformer that is able to classify and simplify research abstracts and then classify it into smaller parts that can be made more simple and easy to understand')
71
- st.caption('Developed by Purbayan Majumder')
72
  # creating model, tokenizer and labelEncoder
73
 
74
  col1, col2 = st.columns(2)
 
60
  def main():
61
 
62
  st.set_page_config(
63
+ page_title="Using BERT Models for Sequential Text Classification in Biomedical Abstracts",
64
  page_icon="πŸ“„",
65
  layout="wide",
66
  initial_sidebar_state="expanded"
67
  )
68
 
69
+ st.title('Using BERT Models for Sequential Text Classification in Biomedical Abstracts πŸ“„ πŸ”₯')
70
  st.caption('A custom NLP classification model based on a transformer that is able to classify and simplify research abstracts and then classify it into smaller parts that can be made more simple and easy to understand')
71
+ st.caption('Developed by Purbayan Majumder, Aman Khan and Rubina Das')
72
  # creating model, tokenizer and labelEncoder
73
 
74
  col1, col2 = st.columns(2)