ThomasSimonini HF staff commited on
Commit
bd2b090
1 Parent(s): 43ae24f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ HEADER = """
4
+ # Generate 3D Assets for Roblox
5
+ With this Space, you can generate 3D Assets using AI for your Roblox game for free.
6
+ Simply follow the 3 steps below.
7
+ 1. Generate a 3D Mesh using an image model as input.
8
+ 2. Simplify the Mesh to get lower polygon number.
9
+ 3. Download the model and import it in Roblox.
10
+ We wrote a tutorial here
11
+ """
12
+
13
+
14
+ with gr.Blocks() as demo:
15
+ gr.Markdown(HEADER)
16
+ gr.load("ThomasSimonini/InstantMeshForRoblox", src="spaces")
17
+
18
+ demo.launch()