Update app.py
Browse files
app.py
CHANGED
|
@@ -56,8 +56,8 @@ st.markdown(
|
|
| 56 |
margins_css = """
|
| 57 |
<style>
|
| 58 |
.main > div {
|
| 59 |
-
padding-left:
|
| 60 |
-
padding-right:
|
| 61 |
padding-top:0.4rem;
|
| 62 |
}
|
| 63 |
</style>
|
|
@@ -90,7 +90,7 @@ results_data = {
|
|
| 90 |
# Title of the research
|
| 91 |
|
| 92 |
st.markdown('<h1 class="centered-title">Variational Information bottleneck pruning for Object detection</h1>', unsafe_allow_html=True)# Create two columns with specified widths
|
| 93 |
-
col1, col2 = st.columns([5.
|
| 94 |
# Right section: Filters and Hyperparameters
|
| 95 |
with col2:
|
| 96 |
st.markdown('<div class="fixed-col">', unsafe_allow_html=True)
|
|
|
|
| 56 |
margins_css = """
|
| 57 |
<style>
|
| 58 |
.main > div {
|
| 59 |
+
padding-left: 1rem;
|
| 60 |
+
padding-right:1rem;
|
| 61 |
padding-top:0.4rem;
|
| 62 |
}
|
| 63 |
</style>
|
|
|
|
| 90 |
# Title of the research
|
| 91 |
|
| 92 |
st.markdown('<h1 class="centered-title">Variational Information bottleneck pruning for Object detection</h1>', unsafe_allow_html=True)# Create two columns with specified widths
|
| 93 |
+
col1, col2 = st.columns([5.5, 4.5])
|
| 94 |
# Right section: Filters and Hyperparameters
|
| 95 |
with col2:
|
| 96 |
st.markdown('<div class="fixed-col">', unsafe_allow_html=True)
|