Spaces:
Runtime error
Runtime error
ahmadalfakeh
commited on
Commit
β’
2a1e7da
1
Parent(s):
1a933a5
Update app.py
Browse files
app.py
CHANGED
@@ -243,39 +243,8 @@ def make3d(images):
|
|
243 |
return mesh_fpath, mesh_glb_fpath
|
244 |
|
245 |
|
246 |
-
_HEADER_ = '''
|
247 |
-
**InstantMesh** is a feed-forward framework for efficient 3D mesh generation from a single image based on the LRM/Instant3D architecture.
|
248 |
|
249 |
-
Code: <a href='https://github.com/TencentARC/InstantMesh' target='_blank'>GitHub</a>. Techenical report: <a href='https://arxiv.org/abs/2404.07191' target='_blank'>ArXiv</a>.
|
250 |
-
|
251 |
-
βοΈβοΈβοΈ**Important Notes:**
|
252 |
-
- The demo can export a .obj mesh with vertex colors or a .glb mesh now. If you prefer to export a .obj mesh with a **texture map**, please refer to our <a href='https://github.com/TencentARC/InstantMesh?tab=readme-ov-file#running-with-command-line' target='_blank'>Github Repo</a>.
|
253 |
-
- The 3D mesh generation results highly depend on the quality of generated multi-view images. Please try a different **seed value** if the result is unsatisfying (Default: 42).
|
254 |
-
'''
|
255 |
-
|
256 |
-
_CITE_ = r"""
|
257 |
-
If InstantMesh is helpful, please help to β the <a href='https://github.com/TencentARC/InstantMesh' target='_blank'>Github Repo</a>. Thanks! [![GitHub Stars](https://img.shields.io/github/stars/TencentARC/InstantMesh?style=social)](https://github.com/TencentARC/InstantMesh)
|
258 |
-
---
|
259 |
-
π **Citation**
|
260 |
-
|
261 |
-
If you find the work useful for your research or applications, please cite using this bibtex:
|
262 |
-
```bibtex
|
263 |
-
@article{xu2024instantmesh,
|
264 |
-
title={InstantMesh: Efficient 3D Mesh Generation from a Single Image with Sparse-view Large Reconstruction Models},
|
265 |
-
author={Xu, Jiale and Cheng, Weihao and Gao, Yiming and Wang, Xintao and Gao, Shenghua and Shan, Ying},
|
266 |
-
journal={arXiv preprint arXiv:2404.07191},
|
267 |
-
year={2024}
|
268 |
-
}
|
269 |
-
```
|
270 |
-
|
271 |
-
π **License**
|
272 |
-
|
273 |
-
Apache-2.0 LICENSE. Please refer to the [LICENSE file](https://huggingface.co/spaces/jkorstad/InstantMesh-img-to-3D/blob/main/LICENSE) for details.
|
274 |
-
|
275 |
-
π§ **Contact**
|
276 |
-
|
277 |
-
If you have any questions, feel free to open a discussion or contact the original model creators at <b>[email protected]</b> or myself at <b>[email protected]</b>.
|
278 |
-
"""
|
279 |
|
280 |
|
281 |
with gr.Blocks() as demo:
|
|
|
243 |
return mesh_fpath, mesh_glb_fpath
|
244 |
|
245 |
|
246 |
+
_HEADER_ = ''' A 3D MODEL fine tuned by ahmadalfakeh '''
|
|
|
247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
|
249 |
|
250 |
with gr.Blocks() as demo:
|