CoolFace
Apppublic

EuroPython2022/viciu

sourceHugging Facemitupdated 4y agoView on Hugging Face
1likes
app.py10 linesDownload Raw Back to root
1import gradio as gr2 3 4def update(name):5    return f"Welcome to Gradio, {name}!"6 7 8gr.Interface.load('huggingface/distilgpt2').launch()9 10