File size: 378 Bytes
2afe341
71a48d6
2afe341
71a48d6
2afe341
 
 
 
810185a
2afe341
1
2
3
4
5
6
7
8
9
10
#import libraries and dependencies
import gradio as gr
from gradio.mix import Parallel

#instantiate variables as functions
model1 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model2 = gr.Interface.load("huggingface/google/flan-t5-xl")
model3 = gr.Interface.load("huggingface/Wootang01/distilgpt2-finetuned-prayerjournals")

gr.Parallel(model, model2, model3).launch()