File size: 1,072 Bytes
96f2e55
d4aeda9
 
96f2e55
 
d4aeda9
 
 
 
 
 
 
 
 
 
 
 
 
96f2e55
 
2ac9c48
 
 
 
 
 
 
 
 
 
 
 
96f2e55
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import gradio as gr
from gradio.mix import Parallel, Series

description = "BigGAN text-to-image demo."
title = "BigGAN ImageNet"

Gans=["biggan-deep-128", "biggan-deep-256", "biggan-deep-512"]

io1 = gr.Interface.load('huggingface/osanseviero/BigGAN-deep-128')
io2 = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128")
io3 = gr.Interface.load("huggingface/osanseviero/BigGAN-deep-128")                  
#io3 = gr.Interface.load("huggingface/emilyalsentzer/Bio_Discharge_Summary_BERT")                  
#io3 = gr.Interface.load("huggingface/google/pegasus-pubmed")  
#io3 = gr.Interface.load("huggingface/tennessejoyce/titlewave-t5-base")  

# = Parallel(io1, io2, io3,

interface = Parallel(io1,io2,io3, 
            description=description,
            title = title,
            examples=[
            ["lighthouse"],
            ["eyeglasses"],
            ["stool"],
            ["window"],
            ["hand"],
            ["dice"],
            ["cloud"],
            ["gate"],
            ["cat"],
            ["toes"]
            ]
)
interface.launch()