Spaces:
Sleeping
Sleeping
Remove EleutherAI/gpt-j-6B
#1
by
Wootang01
- opened
app.py
CHANGED
@@ -4,8 +4,7 @@ from gradio.mix import Parallel
|
|
4 |
title="My First Text Generator"
|
5 |
description="Input text."
|
6 |
|
7 |
-
model1=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
|
8 |
model2=gr.Interface.load("huggingface/gpt2")
|
9 |
model3=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
|
10 |
|
11 |
-
gr.Parallel(
|
|
|
4 |
title="My First Text Generator"
|
5 |
description="Input text."
|
6 |
|
|
|
7 |
model2=gr.Interface.load("huggingface/gpt2")
|
8 |
model3=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
|
9 |
|
10 |
+
gr.Parallel(model2,model3,title=title,description=description).launch()
|