Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Vibu46vk
/
IMG
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Vibu46vk
commited on
Mar 27, 2025
Commit
921a199
·
verified
·
1 Parent(s):
d4983a1
Create gradio
Browse files
Files changed (1)
hide
show
gradio
+9
-0
gradio
ADDED
Viewed
@@ -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()