Wootang01's picture
Update app.py
15e84db
raw
history blame
166 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("text-generation", model='EleutherAI/gpt-neo-2.7B')
gr.Interface.from_pipeline(pipe).launch()