https://github.com/tirendazacademy/gradio-tutorials
https://github.com/tirendazacademy/gradio-tutorials
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tirendazacademy/gradio-tutorials
- Owner: TirendazAcademy
- Created: 2023-11-04T19:44:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-29T22:48:10.000Z (over 1 year ago)
- Last Synced: 2025-01-01T05:27:01.193Z (9 months ago)
- Language: Jupyter Notebook
- Size: 3.64 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
```
## 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)