Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
omerXfaruq
/
aasef
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
omerXfaruq
commited on
Feb 17, 2023
Commit
d4a71ff
·
1 Parent(s):
37cdc95
Upload app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
ADDED
Viewed
@@ -0,0 +1,4 @@
1
+
import gradio as gr
2
+
name_list = ['spaces/onnx/GPT-2']
3
+
interfaces = [gr.Interface.load(name) for name in name_list]
4
+
gr.mix.Parallel(*interfaces, title="example-title", description="example-description").launch()