Spaces:
Running
on
Zero
Running
on
Zero
File size: 261 Bytes
75d84c2 27fc85d 75d84c2 27fc85d 75d84c2 27fc85d f882a9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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() |