hassiahk commited on
Commit
f5e86d2
·
1 Parent(s): ada102f

Change sliders description

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
- "Theta", min_value=-pi, max_value=pi, step=0.5, value=0.0, help="Rotational angle in Horizontal direction"
59
  )
60
  phi = st.sidebar.slider(
61
- "Phi", min_value=0.0, max_value=0.5 * pi, step=0.1, value=1.0, help="Rotational angle in Vertical direction"
62
  )
63
  radius = st.sidebar.slider(
64
- "Radius", min_value=2.0, max_value=6.0, step=1.0, value=3.0, help="Distance between object and the viewer"
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. "