Spaces:
Build error
Build error
Fix beta_columns
Browse files
app.py
CHANGED
@@ -129,13 +129,13 @@ with st.spinner("Rendering View..."):
|
|
129 |
n_new_w = int(2 * n_w)
|
130 |
n_im = n_im.resize(size=(n_new_w, n_new_w))
|
131 |
|
132 |
-
diet_nerf_col, nerf_col = st.beta_columns(1, 1)
|
133 |
diet_nerf_col.markdown(
|
134 |
-
"""<h4 style='text-align: center'>
|
135 |
)
|
136 |
diet_nerf_col.image(dn_im, use_column_width=True)
|
137 |
|
138 |
nerf_col.markdown(
|
139 |
-
"""<h4 style='text-align: center'>
|
140 |
)
|
141 |
nerf_col.image(n_im, use_column_width=True)
|
|
|
129 |
n_new_w = int(2 * n_w)
|
130 |
n_im = n_im.resize(size=(n_new_w, n_new_w))
|
131 |
|
132 |
+
diet_nerf_col, nerf_col = st.beta_columns([1, 1])
|
133 |
diet_nerf_col.markdown(
|
134 |
+
"""<h4 style='text-align: center'>DietNeRF</h4>""", unsafe_allow_html=True
|
135 |
)
|
136 |
diet_nerf_col.image(dn_im, use_column_width=True)
|
137 |
|
138 |
nerf_col.markdown(
|
139 |
+
"""<h4 style='text-align: center'>NeRF</h4>""", unsafe_allow_html=True
|
140 |
)
|
141 |
nerf_col.image(n_im, use_column_width=True)
|