akshay7 commited on
Commit
a232db1
1 Parent(s): 6f50845

ADD: Profile info at the bottom of the app

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -87,7 +87,7 @@ def main():
87
  submit(message)
88
 
89
  with st.expander("Additional Model Info"):
90
- st.write("""
91
  The models used were fine-tuned on subset of data from the [Arxiv Dataset](https://huggingface.co/datasets/arxiv_dataset)
92
  The task of the models is to suggest an appropraite title from the abstract of a scientific paper.
93
 
@@ -98,10 +98,11 @@ def main():
98
  was trained on the categories: cs.AI, cs.LG, cs.NI, cs.GR cs.CL, cs.CV (Artificial Intelligence, Machine Learning, Networking and Internet Architecture, Graphics, Computation and Language, Computer Vision and Pattern Recognition)
99
  """)
100
 
101
- st.text('')
 
102
  st.markdown(
103
- '''<span style="color:blue; font-size:10px">App created by [@AlekseyDorkin](https://huggingface.co/AlekseyDorkin)
104
- and [@akshay7](https://huggingface.co/akshay7)</span>''',
105
  unsafe_allow_html=True,
106
  )
107
 
87
  submit(message)
88
 
89
  with st.expander("Additional Model Info"):
90
+ st.markdown("""
91
  The models used were fine-tuned on subset of data from the [Arxiv Dataset](https://huggingface.co/datasets/arxiv_dataset)
92
  The task of the models is to suggest an appropraite title from the abstract of a scientific paper.
93
 
98
  was trained on the categories: cs.AI, cs.LG, cs.NI, cs.GR cs.CL, cs.CV (Artificial Intelligence, Machine Learning, Networking and Internet Architecture, Graphics, Computation and Language, Computer Vision and Pattern Recognition)
99
  """)
100
 
101
+ st.text('\n')
102
+ st.text('\n')
103
  st.markdown(
104
+ '''<span style="color:blue; font-size:10px">App created by [@shamikbose89](https://huggingface.co/shamikbose89),
105
+ [@AryanLala](https://huggingface.co/AryanLala) and [@akshay7](https://huggingface.co/akshay7) </span>''',
106
  unsafe_allow_html=True,
107
  )
108