File size: 200 Bytes
27fc85d
 
 
 
 
 
 
 
f882a9b
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

title = "## Image to 3D"
description = "A lightweight image to 3D converter"


with gr.Blocks().queue() as demo:
    gr.Markdown(title)
    gr.Markdown(description)

demo.launch()