GitHub: https://github.com/geekjr/quickai
As an example to perform image classification, you only need to write 2 lines of code instead of many you would otherwise have to write without quickai:
from quickai import ImageClassification
ImageClassification(<MODELARCH>, <PATH>, <SAVENAME>)
Where:
MODELARCH is the architecture you want to use
PATH is the path to your training data
SAVENAME is the path to save your model to
There are a few more examples in the examples folder of the repo.
Top comments (0)