File size: 453 Bytes
21c0ebb
 
 
88826f7
21c0ebb
 
88826f7
21c0ebb
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

from transformers import pipeline
calculator = pipeline('text2text-generation', model='el-filatova/mbart-gsm8k')

def predict(text):
    return calculator(text)[0]['generated_text']

iface = gr.Interface(fn=predict, inputs=[gr.Textbox(value="Natalia sold clips to 48 of her friends in April, and then she sold half as many clips in May. How many clips did Natalia sell altogether in April and May?")], outputs="text")
iface.launch()