hassiahk commited on
Commit
bb689c9
1 Parent(s): 1b0f5ae

Some UI changes

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -37,7 +37,7 @@ def select_model():
37
 
38
  st.title("DietNeRF")
39
  caption = (
40
- "Diet-NeRF 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,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="450" height="400"/>
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=True)
 
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")