Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
51 |
-
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
|