Spaces:
Build error
Build error
Add aesthetics to descriptions
Browse files
app.py
CHANGED
@@ -86,9 +86,9 @@ caption = (
|
|
86 |
)
|
87 |
st.markdown(caption)
|
88 |
st.markdown(
|
89 |
-
"> π NOTE
|
90 |
"[Experimental Results](https://www.notion.so/DietNeRF-Putting-NeRF-on-a-Diet-4aeddae95d054f1d91686f02bdb74745#0f6bc8f1008d4765b9b4635999626d4b) "
|
91 |
-
"section in our report
|
92 |
)
|
93 |
|
94 |
|
@@ -140,9 +140,10 @@ st.markdown("")
|
|
140 |
|
141 |
with st.spinner("Rendering view..."):
|
142 |
with st.spinner(
|
143 |
-
"It may take around 1-2 mins
|
|
|
144 |
"[project report](https://www.notion.so/DietNeRF-Putting-NeRF-on-a-Diet-4aeddae95d054f1d91686f02bdb74745), "
|
145 |
-
"if you haven't already :
|
146 |
):
|
147 |
dn_pred_color, _ = render_predict_from_pose(diet_nerf_state, theta, phi, radius)
|
148 |
dn_im = predict_to_image(dn_pred_color)
|
@@ -158,7 +159,7 @@ with st.spinner("Rendering view..."):
|
|
158 |
|
159 |
# diet_nerf_col, nerf_col = st.beta_columns([1, 1])
|
160 |
st.markdown(
|
161 |
-
"> π NOTE
|
162 |
"because it has been downsampled to speedup the process."
|
163 |
)
|
164 |
st.markdown(f"""<h4 style='text-align: center'>Rendered view for {obj_select}</h4>""", unsafe_allow_html=True)
|
|
|
86 |
)
|
87 |
st.markdown(caption)
|
88 |
st.markdown(
|
89 |
+
"> π **NOTE**: To get a detailed comparison of differences between `DietNeRF` and `NeRF`, you can take a look at the "
|
90 |
"[Experimental Results](https://www.notion.so/DietNeRF-Putting-NeRF-on-a-Diet-4aeddae95d054f1d91686f02bdb74745#0f6bc8f1008d4765b9b4635999626d4b) "
|
91 |
+
"section in our project report."
|
92 |
)
|
93 |
|
94 |
|
|
|
140 |
|
141 |
with st.spinner("Rendering view..."):
|
142 |
with st.spinner(
|
143 |
+
":information_source: **INFO**: It may take around 1-2 mins to render the view. "
|
144 |
+
"In the meantime, why don't you take a look at our "
|
145 |
"[project report](https://www.notion.so/DietNeRF-Putting-NeRF-on-a-Diet-4aeddae95d054f1d91686f02bdb74745), "
|
146 |
+
"if you haven't already :slight_smile:"
|
147 |
):
|
148 |
dn_pred_color, _ = render_predict_from_pose(diet_nerf_state, theta, phi, radius)
|
149 |
dn_im = predict_to_image(dn_pred_color)
|
|
|
159 |
|
160 |
# diet_nerf_col, nerf_col = st.beta_columns([1, 1])
|
161 |
st.markdown(
|
162 |
+
"> π **NOTE**: The rendered view does not fully reflect the true quality of the view generated by the model "
|
163 |
"because it has been downsampled to speedup the process."
|
164 |
)
|
165 |
st.markdown(f"""<h4 style='text-align: center'>Rendered view for {obj_select}</h4>""", unsafe_allow_html=True)
|