aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
47760d4
raw
history blame contribute delete
281 Bytes
import gradio as gr
component = gr.Textbox(lines=5, label="Text")
api = gr.load("huggingface/gpt2-xl")
demo = gr.Interface(
fn=lambda x: x[:-50] + api(x[-50:]),
inputs=component,
outputs=component,
title="gpt2-xl",
)
if __name__ == "__main__":
demo.launch()