Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -220,6 +220,15 @@ with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
|
220 |
inputs=image_prompt,
|
221 |
)
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
if __name__ == "__main__":
|
224 |
# Initialize pipeline
|
225 |
pipeline = TrellisImageTo3DPipeline.from_pretrained("Stable-X/trellis-normal-v0-1")
|
|
|
220 |
inputs=image_prompt,
|
221 |
)
|
222 |
|
223 |
+
gr.Markdown(
|
224 |
+
"""
|
225 |
+
**Acknowledgments**: Hi3DGen is built on the shoulders of giants. We would like to express our gratitude to the open-source research community and the developers of these pioneering projects:
|
226 |
+
- **3D Modeling:** Our 3D Model is finetuned from the SOTA open-source 3D foundation model [Trellis](https://github.com/microsoft/TRELLIS) and we draw inspiration from the teams behind [Rodin](https://hyperhuman.deemos.com/rodin), [Tripo](https://www.tripo3d.ai/app/home), and [Dora](https://github.com/Seed3D/Dora).
|
227 |
+
- **Normal Estimation:** Our Normal Estimation Model builds on the leading normal estimation research such as [StableNormal](https://github.com/hugoycj/StableNormal) and [GenPercept](https://github.com/aim-uofa/GenPercept).
|
228 |
+
**Your contributions and collaboration push the boundaries of 3D modeling!**
|
229 |
+
"""
|
230 |
+
)
|
231 |
+
|
232 |
if __name__ == "__main__":
|
233 |
# Initialize pipeline
|
234 |
pipeline = TrellisImageTo3DPipeline.from_pretrained("Stable-X/trellis-normal-v0-1")
|