Update app.py
Browse files
app.py
CHANGED
@@ -172,6 +172,10 @@ h1, h2 {
|
|
172 |
margin: 15px 0;
|
173 |
text-align: center;
|
174 |
}
|
|
|
|
|
|
|
|
|
175 |
"""
|
176 |
|
177 |
# Create the Gradio Interface
|
@@ -187,8 +191,11 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
187 |
<hr>
|
188 |
</div>
|
189 |
""")
|
190 |
-
|
191 |
-
|
|
|
|
|
|
|
192 |
|
193 |
with gr.Tabs(elem_id="tabs"):
|
194 |
with gr.TabItem("📖 Overview"):
|
|
|
172 |
margin: 15px 0;
|
173 |
text-align: center;
|
174 |
}
|
175 |
+
img {
|
176 |
+
width: 100px;
|
177 |
+
height: 100px;
|
178 |
+
}
|
179 |
"""
|
180 |
|
181 |
# Create the Gradio Interface
|
|
|
191 |
<hr>
|
192 |
</div>
|
193 |
""")
|
194 |
+
gr.Image(value="mobile_mmlu_sd.jpeg", label="", style={"width": "100px", "height": "100px"})
|
195 |
+
with gr.Column(scale=1): # Image takes less space
|
196 |
+
gr.Markdown("""
|
197 |
+
<img src="mobile_mmlu_sd.jpeg" alt="Competition Logo">
|
198 |
+
""")
|
199 |
|
200 |
with gr.Tabs(elem_id="tabs"):
|
201 |
with gr.TabItem("📖 Overview"):
|