Spaces:
Build error
Build error
Change sliders description
Browse files
app.py
CHANGED
@@ -55,13 +55,13 @@ st.sidebar.markdown(
|
|
55 |
)
|
56 |
st.sidebar.header("SELECT YOUR VIEW DIRECTION")
|
57 |
theta = st.sidebar.slider(
|
58 |
-
"
|
59 |
)
|
60 |
phi = st.sidebar.slider(
|
61 |
-
"
|
62 |
)
|
63 |
radius = st.sidebar.slider(
|
64 |
-
"
|
65 |
)
|
66 |
caption = (
|
67 |
"`DietNeRF` achieves state-of-the-art few-shot learning capacity in 3D model reconstruction. "
|
|
|
55 |
)
|
56 |
st.sidebar.header("SELECT YOUR VIEW DIRECTION")
|
57 |
theta = st.sidebar.slider(
|
58 |
+
"Rotation (Left to Right)", min_value=-pi, max_value=pi, step=0.5, value=0.0, help="Rotational angle in Horizontal direction (Theta)"
|
59 |
)
|
60 |
phi = st.sidebar.slider(
|
61 |
+
"Rotation (Down to Up)", min_value=0.0, max_value=0.5 * pi, step=0.1, value=1.0, help="Rotational angle in Vertical direction (Phi)"
|
62 |
)
|
63 |
radius = st.sidebar.slider(
|
64 |
+
"Distance (Close to Far)", min_value=2.0, max_value=6.0, step=1.0, value=3.0, help="Distance between object and the viewer (Radius)"
|
65 |
)
|
66 |
caption = (
|
67 |
"`DietNeRF` achieves state-of-the-art few-shot learning capacity in 3D model reconstruction. "
|