Spaces:
Build error
Build error
Some UI changes
Browse files
app.py
CHANGED
@@ -37,7 +37,7 @@ def select_model():
|
|
37 |
|
38 |
st.title("DietNeRF")
|
39 |
caption = (
|
40 |
-
"
|
41 |
"Thanks to the 2D supervision by CLIP (aka semantic loss), "
|
42 |
"it can render novel and challenging views with ONLY 8 training images, "
|
43 |
"outperforming original NeRF!"
|
@@ -80,7 +80,7 @@ st.sidebar.markdown(
|
|
80 |
}
|
81 |
</style>
|
82 |
<p class="aligncenter">
|
83 |
-
<img src="https://user-images.githubusercontent.com/77657524/126361638-4aad58e8-4efb-4fc5-bf78-f53d03799e1e.png" width="
|
84 |
</p>
|
85 |
""",
|
86 |
unsafe_allow_html=True,
|
@@ -112,4 +112,4 @@ with st.spinner("Rendering Image, it may take 2-3 mins. So, why don't you read o
|
|
112 |
w, _ = im.size
|
113 |
new_w = int(2 * w)
|
114 |
im = im.resize(size=(new_w, new_w))
|
115 |
-
st.image(im, use_column_width=
|
|
|
37 |
|
38 |
st.title("DietNeRF")
|
39 |
caption = (
|
40 |
+
"DietNeRF achieves SoTA few-shot learning capacity in 3D model reconstruction. "
|
41 |
"Thanks to the 2D supervision by CLIP (aka semantic loss), "
|
42 |
"it can render novel and challenging views with ONLY 8 training images, "
|
43 |
"outperforming original NeRF!"
|
|
|
80 |
}
|
81 |
</style>
|
82 |
<p class="aligncenter">
|
83 |
+
<img src="https://user-images.githubusercontent.com/77657524/126361638-4aad58e8-4efb-4fc5-bf78-f53d03799e1e.png" width="410" height="400"/>
|
84 |
</p>
|
85 |
""",
|
86 |
unsafe_allow_html=True,
|
|
|
112 |
w, _ = im.size
|
113 |
new_w = int(2 * w)
|
114 |
im = im.resize(size=(new_w, new_w))
|
115 |
+
st.image(im, use_column_width="auto")
|