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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -4
app.py CHANGED
@@ -45,11 +45,23 @@ 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
 
50
- st.markdown('<div style="position: absolute; top: 5px; left: 5px;"></div>', unsafe_allow_html=True)
51
-
52
- # col1, col2 = st.columns([1, 3])
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  st.title("Paper Citation Classifier")
55
 
 
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)
53
+ st.markdown('<div style="position: absolute; top: 5px; left: 5px;"></div>', unsafe_allow_html=True)
54
+
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