An open API service indexing awesome lists of open source software.

https://github.com/tirendazacademy/gradio-tutorials


https://github.com/tirendazacademy/gradio-tutorials

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Welcome to Gradio Tutorials
In this repo, I walk you through how to build machine learning and deep learning apps.

[Gradio](https://www.gradio.app/) is a Python library that allows you to quickly demonstrate your ML models with an interactive web interface. You can easily create apps like this:

```
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()
```
![](https://github.com/TirendazAcademy/Gradio-Tutorials/blob/main/Images/gradio-app.gif)

## YouTube Videos
- [Building & Deploying an NER App](https://youtu.be/2iRsk7HM6kg)
- [Music Generator App](https://youtu.be/_5F-toek0G8)
- [ChatBot with Zeyphyr-3b](https://youtu.be/VLyJ6pDxrB4)