farimafatahi commited on
Commit
3d3bb43
·
verified ·
1 Parent(s): 6265abe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -22
app.py CHANGED
@@ -76,30 +76,31 @@ st.markdown(
76
 
77
  # Display title and description
78
  st.markdown('<div class="container">', unsafe_allow_html=True)
 
79
 
80
  # Convert the image to base64
81
- buffered = BytesIO()
82
- logo_image.save(buffered, format="PNG")
83
- img_data = base64.b64encode(buffered.getvalue()).decode("utf-8")
84
- st.markdown(
85
- f"""
86
- <style>
87
- .logo-container {{
88
- display: flex;
89
- justify-content: flex-start; /* Aligns to the left */
90
- }}
91
- .logo-container img {{
92
- width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
93
- max-width: 300px; /* Set a maximum width */
94
- background-color: transparent;
95
- }}
96
- </style>
97
- <div class="logo-container">
98
- <img src="data:image/png;base64,{img_data}" alt="FactBench Leaderboard Logo">
99
- </div>
100
- """,
101
- unsafe_allow_html=True
102
- )
103
  # st.image(logo_image, wi)
104
  # st.markdown('<div class="title">FactBench Leaderboard</div>',
105
  # unsafe_allow_html=True)
 
76
 
77
  # Display title and description
78
  st.markdown('<div class="container">', unsafe_allow_html=True)
79
+ st.image(logo_image, output_format="PNG", width=100)
80
 
81
  # Convert the image to base64
82
+ # buffered = BytesIO()
83
+ # logo_image.save(buffered, format="PNG")
84
+ # img_data = base64.b64encode(buffered.getvalue()).decode("utf-8")
85
+ # st.markdown(
86
+ # f"""
87
+ # <style>
88
+ # .logo-container {{
89
+ # display: flex;
90
+ # justify-content: flex-start; /* Aligns to the left */
91
+ # }}
92
+ # .logo-container img {{
93
+ # width: 50%; /* Adjust this to control the width, e.g., 50% of container width */
94
+ # max-width: 300px; /* Set a maximum width */
95
+ # background-color: transparent;
96
+ # }}
97
+ # </style>
98
+ # <div class="logo-container">
99
+ # <img src="data:image/png;base64,{img_data}" alt="FactBench Leaderboard Logo">
100
+ # </div>
101
+ # """,
102
+ # unsafe_allow_html=True
103
+ # )
104
  # st.image(logo_image, wi)
105
  # st.markdown('<div class="title">FactBench Leaderboard</div>',
106
  # unsafe_allow_html=True)