ilyshi commited on
Commit
c8d4078
1 Parent(s): fe9ea92
Files changed (2) hide show
  1. app.py +4 -1
  2. logo.png +0 -0
app.py CHANGED
@@ -44,9 +44,12 @@ model.load_state_dict(
44
  )
45
 
46
  # MAIN
 
 
47
 
 
48
 
49
- st.markdown("<img src='https://centroderecursosmarista.org/wp-content/uploads/2013/05/arvix.jpg' class='center'>", unsafe_allow_html=True)
50
  st.markdown("# Arxiv.org category classifier")
51
  st.markdown("# ")
52
 
44
  )
45
 
46
  # MAIN
47
+ from PIL import Image
48
+ image = Image.open('logo.png')
49
 
50
+ st.image(image)
51
 
52
+ # st.markdown("<img src='https://centroderecursosmarista.org/wp-content/uploads/2013/05/arvix.jpg' class='center'>", unsafe_allow_html=True)
53
  st.markdown("# Arxiv.org category classifier")
54
  st.markdown("# ")
55
 
logo.png ADDED