File size: 1,169 Bytes
69f9761
 
 
 
 
 
 
 
 
 
 
 
43f449a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr

title = "ProphetNet"

description = "Gradio Demo for ProphetNet. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."

article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2001.04063' target='_blank'>ProphetNet: Predicting Future N-gram for Sequence-to-Sequence Pre-training</a></p>"

examples = [
    ["Paris is the capital of France"]
]

io1 = gr.Interface.load("huggingface/microsoft/prophetnet-large-uncased")

io2 = gr.Interface.load("huggingface/microsoft/prophetnet-large-uncased-squad-qg")


def inference(text, model):
    if model == "prophetnet-large-uncased":
        outtext = io1(text)
    else:
        outtext = io2(text)
    return outtext   
    
gr.Interface(
    inference, 
    [gr.inputs.Textbox(label="Input"),gr.inputs.Dropdown(choices=["prophetnet-large-uncased","prophetnet-large-uncased-squad-qg"], type="value", default="prophetnet-large-uncased", label="model")
], 
    gr.outputs.Textbox(label="Output"),
    examples=examples,
    article=article,
    title=title,
    description=description).launch(enable_queue=True, cache_examples=True)