Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -153,8 +153,15 @@ pipeline = TwoStagePipeline(
|
|
| 153 |
dtype=torch.float32
|
| 154 |
)
|
| 155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 156 |
with gr.Blocks() as demo:
|
| 157 |
gr.Markdown("# CRM: Single Image to 3D Textured Mesh with Convolutional Reconstruction Model")
|
|
|
|
| 158 |
with gr.Row():
|
| 159 |
with gr.Column():
|
| 160 |
with gr.Row():
|
|
|
|
| 153 |
dtype=torch.float32
|
| 154 |
)
|
| 155 |
|
| 156 |
+
_DESCRIPTION = '''
|
| 157 |
+
* Our [official implementation](https://github.com/thu-ml/CRM) uses UV texture instead of vertex color. It has better texture than this online demo.
|
| 158 |
+
* Project page of CRM: https://ml.cs.tsinghua.edu.cn/~zhengyi/CRM/
|
| 159 |
+
* If you find the output unsatisfying, try using different seeds:)
|
| 160 |
+
'''
|
| 161 |
+
|
| 162 |
with gr.Blocks() as demo:
|
| 163 |
gr.Markdown("# CRM: Single Image to 3D Textured Mesh with Convolutional Reconstruction Model")
|
| 164 |
+
gr.Markdown(_DESCRIPTION)
|
| 165 |
with gr.Row():
|
| 166 |
with gr.Column():
|
| 167 |
with gr.Row():
|