File size: 495 Bytes
91dba4d
 
6de72ef
 
 
 
 
 
91dba4d
 
 
6de72ef
 
 
 
 
 
 
91dba4d
 
 
6de72ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import gradio as gr

import numpy as np

def greet (word, sentence, model, layer, norm):
    inputs = [word, sentence, model, str(layer), norm]
    outputs = [input+'\t'+str(np.random.randint(0,100, size=1)[0]) for input in inputs]
    return "\n".join(outputs)

demo = gr.Interface(
    fn=greet,
    inputs=[
        "text", 
        "text", 
        gr.Radio(["bert", "gpt2"]),
        "number",
        gr.Radio(["Binder", "McRae", "Buchanan"]),
    ],
    outputs=["text"],
)

demo.launch()