Spaces:
Paused
Paused
add more doc
Browse files
app.py
CHANGED
@@ -202,6 +202,7 @@ _DESCRIPTION = '''
|
|
202 |
</div>
|
203 |
|
204 |
* Input can be only text, only image, or both image and text.
|
|
|
205 |
* If you find the output unsatisfying, try using different seeds!
|
206 |
'''
|
207 |
|
@@ -235,7 +236,7 @@ with block:
|
|
235 |
# final video results
|
236 |
output_video = gr.Video(label="video")
|
237 |
# ply file
|
238 |
-
output_file = gr.File(label="ply")
|
239 |
with gr.Tab("Multi-view Image"):
|
240 |
# multi-view results
|
241 |
output_image = gr.Image(interactive=False, show_label=False)
|
|
|
202 |
</div>
|
203 |
|
204 |
* Input can be only text, only image, or both image and text.
|
205 |
+
* Output is a `ply` file containing the 3D Gaussians, please check our [repo](https://github.com/3DTopia/LGM/blob/main/readme.md) for visualization and mesh conversion.
|
206 |
* If you find the output unsatisfying, try using different seeds!
|
207 |
'''
|
208 |
|
|
|
236 |
# final video results
|
237 |
output_video = gr.Video(label="video")
|
238 |
# ply file
|
239 |
+
output_file = gr.File(label="3D Gaussians (ply format)")
|
240 |
with gr.Tab("Multi-view Image"):
|
241 |
# multi-view results
|
242 |
output_image = gr.Image(interactive=False, show_label=False)
|