gpt2_experiment / app.py
biranchi125's picture
Update app.py
7599980
raw
history blame
185 Bytes
import gradio as gr
from transformers import pipeline
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()