Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dpc
/
textgencompare
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a1cbf8e
textgencompare
/
app.py
dpc
Create app.py
a1cbf8e
about 3 years ago
raw
Copy download link
history
blame
Safe
226 Bytes
# https://huggingface.co/blog/gradio
import
gradio
as
gr
from
gradio.mix
import
Parallel
m1 = gr.Interface.load(
"huggingface/EleutherAI/gpt-neo-2.7B"
)
m2 = gr.Interface.load(
"huggingface/gpt2"
)
Parallel(m1, m2).launch()