Spaces:
Runtime error
Runtime error
File size: 1,311 Bytes
96f2e55 d4aeda9 90bf080 d4aeda9 96f2e55 d4aeda9 90bf080 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 35 36 37 38 39 40 |
import gradio as gr
from gradio.mix import Parallel, Series
from transformers import SegformerFeatureExtractor, SegformerForImageClassification
from PIL import Image
import requests
feature_extractor = SegformerFeatureExtractor.from_pretrained("nvidia/mit-b0")
model = SegformerForImageClassification.from_pretrained("nvidia/mit-b0")
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(model)
#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() |