Spaces:
Runtime error
Runtime error
File size: 2,602 Bytes
1af5791 dbc8937 f7011b3 dbc8937 59290b2 c8c5904 59290b2 f218c15 c8c5904 f218c15 59290b2 f218c15 dbc8937 3212ab4 dbc8937 e0a0f30 ae3c47b e0a0f30 dbc8937 3212ab4 dbc8937 1af5791 5fedb41 3212ab4 f0a9849 3212ab4 7a6d079 5a2cc6c 3212ab4 5fedb41 f99b813 5fedb41 5a2cc6c 5fedb41 7a6d079 5fedb41 |
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
import gradio as gr
from transformers import T5Tokenizer, T5ForConditionalGeneration
from transformers import AutoModel
# xl size run out of memory on 16GB VM
model_name = 'google/flan-t5-large'
#model_name = 'jncraton/fastchat-t5-3b-v1.0-ct2-int8'
# Load model directly
#from transformers import AutoModel
model = AutoModel.from_pretrained(model_name)
tokenizer = T5Tokenizer.from_pretrained(model_name)
#model = T5ForConditionalGeneration.from_pretrained(model_name)
title = ""
def get_examples ():
return [
["Peter goes to the store to buy a soda. The soda costs $.25 an ounce. \
He brought $2 with him and leaves with $.50. How many ounces of soda did he buy?",
"How much did Peter spend on soda? ** He spend $1.5 on soda because 2 - .5 = <<2-.5=1.5>>1.5 \
How many ounces of soda did Peter buy? ** He bought 6 ounces of soda because 1.5 / .25 = <<6=6>>6 #### 6"
],
["Krystian works in the library. He borrows an average of 40 books every day. \
Every Friday, his number of borrowed books is about 40% higher than the daily average. How many books does he borrow in a week if the library is open from Monday to Friday?"
,"How many books does Krystian borrow on Friday? ** The number of books borrowed \
on Friday is higher by 40 * 40/100 = <<40*40/100=16>>16 books. How many books does Krystian borrow in a week? ** There are 5 days from Monday to Friday inclusive, so Krystian borrows an average of 5 * 40 = <<5*40=200>>200 books during that time. How many books does Krystian borrow in a week? ** With Friday's increase in borrowings, during one week Krystian borrows 200 + 16 = <<200+16=216>>216 books."]
, ["Jane had $60 but gave $30 to dave and went to movies and spend $2. How much money does Jane has left? Answer by reasoning step by step:", "$28"]
]
def text2text(input_text):
input_ids = tokenizer(input_text, return_tensors="pt").input_ids
outputs = model.generate(input_ids, max_length=200)
return tokenizer.decode(outputs[0])
with gr.Blocks() as demo:
gr.Markdown(
"""
# Flan T5 Large Demo
780M parameter Large language model fine tuned on diverse tasks.
Prompt the model in the Input box.
""")
txt_in = gr.Textbox(label="Input", lines=3)
correct_label = gr.Label(label="Correct")
txt_out = gr.Textbox(value="", label="Output", lines=4)
btn = gr.Button(value="Submit")
btn.click(text2text, inputs=[txt_in], outputs=[txt_out])
gr.Examples(
examples=get_examples(),
inputs=[txt_in,correct_label]
)
if __name__ == "__main__":
demo.launch() |