Image-to-3D / app.py
frogleo's picture
优化界面和交互
75d84c2 verified
raw
history blame
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()