Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
frogleo/Hunyuan3D-2mini-Turbo
frogleo
/
Image-to-3D
like
1
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
75d84c2
Image-to-3D
/
app.py
frogleo
优化界面和交互
75d84c2
verified
20 days ago
raw
Copy download link
history
blame
Safe
261 Bytes
import
spaces
import
gradio
as
gr
title =
"## Image to 3D"
description =
"Image to 3D"
@spaces.GPU(
duration=
60
)
def
gen_shape
():
print
(
"do nothing"
)
with
gr.Blocks().queue()
as
demo:
gr.Markdown(title)
gr.Markdown(description)
demo.launch()