Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Commit ·
a4b3bbe
1
Parent(s): 1d99171
Upload app.py with huggingface_hub
Browse files
app.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def identity(*args):
|
| 4 |
+
return args
|
| 5 |
+
|
| 6 |
+
components = ["image", "model3d", "audio", "video", "dataframe"]
|
| 7 |
+
examples = [["0.jpg", "Bunny.obj", "cantina.wav", "test.mp4", "test-old.csv"]]
|
| 8 |
+
|
| 9 |
+
gr.Interface(identity, components, components, examples=examples).launch()
|