Mhassanen commited on
Commit
b79b10a
·
verified ·
1 Parent(s): b5cdc12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -45,8 +45,6 @@ class_colors = {
45
 
46
  st.set_page_config(page_title="Paper Citation Classifier", page_icon="logo.png")
47
 
48
- # st.image("logo.png", width=70)
49
- # st.markdown('<div style="position: absolute; top: 5px; left: 5px;"></div>', unsafe_allow_html=True)
50
 
51
  with st.sidebar:
52
  st.image("logo.png", width=70)
@@ -55,15 +53,19 @@ with st.sidebar:
55
  st.markdown("# Paper Citation Classifier")
56
  st.markdown("---")
57
  st.markdown("## About")
58
- st.markdown("This is a tool to classify paper citations into different levels based on their number of citation.")
 
 
 
59
  st.markdown("### Class Levels:")
60
  st.markdown("- Level 1: Highly cited papers")
61
  st.markdown("- Level 2: Average cited papers")
62
  st.markdown("- Level 3: More cited papers")
63
  st.markdown("- Level 4: Low cited papers")
64
  st.markdown("---")
 
65
 
66
- st.title("Paper Citation Classifier")
67
 
68
  option = st.radio("Select input type:", ("Text", "PDF"))
69
 
 
45
 
46
  st.set_page_config(page_title="Paper Citation Classifier", page_icon="logo.png")
47
 
 
 
48
 
49
  with st.sidebar:
50
  st.image("logo.png", width=70)
 
53
  st.markdown("# Paper Citation Classifier")
54
  st.markdown("---")
55
  st.markdown("## About")
56
+ st.markdown('''
57
+ This is a tool to classify paper citations into different levels based on their number of citations.
58
+ Powered by Fine-Tuned [Longformer model](https://huggingface.co/REEM-ALRASHIDI/LongFormer-Paper-Citaion-Classifier) with custom data.
59
+ ''')
60
  st.markdown("### Class Levels:")
61
  st.markdown("- Level 1: Highly cited papers")
62
  st.markdown("- Level 2: Average cited papers")
63
  st.markdown("- Level 3: More cited papers")
64
  st.markdown("- Level 4: Low cited papers")
65
  st.markdown("---")
66
+ st.markdown('Tabuk University')
67
 
68
+ st.title("Check Your Paper Now!")
69
 
70
  option = st.radio("Select input type:", ("Text", "PDF"))
71