Alex Lau commited on
Commit
591edcc
1 Parent(s): 1adb71b

add TLDR summary

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -45,7 +45,13 @@ phi = st.sidebar.slider("Phi", min_value=0., max_value=0.5*pi,
45
  radius = st.sidebar.slider("Radius", min_value=2., max_value=6.,
46
  step=1., value=3.)
47
 
48
- with st.spinner("Generating the view..."):
 
 
 
 
 
 
49
  pred_color, _ = render_predict_from_pose(state, theta, phi, radius)
50
  im = predict_to_image(pred_color)
51
 
 
45
  radius = st.sidebar.slider("Radius", min_value=2., max_value=6.,
46
  step=1., value=3.)
47
 
48
+ caption = "Diet-NeRF achieves SoTA few-shot learning capacity in 3D model reconstruction. " \
49
+ "Thanks to the 2D supervision by CLIP (aka semantic loss), " \
50
+ "it can render views that both challenging and novel with ONLY 8 training images, " \
51
+ "outperforming original NeRF!"
52
+ st.markdown(f""" <h4> {caption} </h4> """,
53
+ unsafe_allow_html=True)
54
+ with st.spinner("Rendering Image (may take 2-3 mins)..."):
55
  pred_color, _ = render_predict_from_pose(state, theta, phi, radius)
56
  im = predict_to_image(pred_color)
57