Spaces:
Sleeping
Sleeping
File size: 578 Bytes
fd6fd50 |
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 |
import gradio as gr
import torch
from s19_cpu_gradio_2 import GPT
def sentence_builder(txt, new_tokens):
if(None == new_tokens):
new_tokens = 0
out = GPT(txt, int(new_tokens))
return out
demo = gr.Interface(
sentence_builder,
[
gr.Textbox("", label = "Input", info="mandatory input"),
gr.Dropdown(
["100", "200", "300", "400", "500", "1000", "2000"], label="New Tokens", info="Choose how many tokens required in output."
)
],
[
gr.Textbox("", label = "Output")
]
)
demo.launch(debug=True)
|