Vibu46vk commited on
Commit
921a199
·
verified ·
1 Parent(s): d4983a1

Create gradio

Browse files
Files changed (1) hide show
  1. gradio +9 -0
gradio ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ iface = gr.Interface(
4
+ fn=lambda x: x, # Identity function, just displays the model
5
+ inputs=gr.Model3D(),
6
+ outputs=gr.Model3D()
7
+ )
8
+
9
+ iface.launch()