Skip to content

Cyrus-spc-tech/Gradio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gradio

Gradio is an open-source Python library that allows you to quickly create user-friendly web interfaces for your machine learning models, APIs, or any Python function. With Gradio, you can demo your models, share them with others, and collect feedback easily.

Features

  • Create interactive demos for machine learning models in minutes
  • Supports images, text, audio, video, and more as inputs/outputs
  • Share demos with a public link instantly
  • Integrate with Hugging Face Spaces and other platforms

Installation

pip install gradio

Quick Start

Here's a simple example to get you started:

import gradio as gr

def greet(name):
    return f"Hello, {name}!"

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

Documentation

License

This project is licensed under the Apache 2.0 License.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages