Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 760 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 760 Bytes

PyPI version

fastgradio

fastgradio is a python library to quickly build and share gradio interfaces of your trained fastai models.

To use it simply

pip install fastgradio 

Then

from fastgradio import Demo 
Demo(learner).launch()

This will create an interface like the one below:

For more info on usage, check the example notebook

Note: We are working on expanding this to support all data types in fastai. Currently only supports image-to-label interfaces. PRs are welcome!