Build & Share Delightful Machine Learning Apps

Gradio is the fastest way to demo your machine learning model with a friendly web interface so that anyone can use it, anywhere!

Why Gradio?

Gradio makes it easy for you to build and share your machine learning models.

🚀

Fast to Set Up

Create a working demo of your ML model in just a few lines of code.

🔗

Shareable

Get a shareable link or embed your demo directly in your website.

🎨

Customizable

Fully customize the look and feel of your demo with themes and components.

Quick Start

Get started with Gradio in just a few lines of code.

            pip install gradio

import gradio as gr

def greet(name):
    return "Hello " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()