Repo for storing Machine Learning utilities, helper code, etc...
Stuff that might live in here would be for manipulating images, working with datasets, like COCO Dataset
pip install -r requirements.txt
To use one's own data, see the example.ipynb and the instructions there
The main contents so far are coco.py
's Annotation
class that converts labelme annotations to COCO Dataset 2014 annotations.
There is an example Jupyter Notebook using one's own data converted from labelme
style annotations to COCO annotations then being displayed here: example.ipynb
To run the test suite, run these commands:
pip install pytest
# from the top level project dir
py.test
MIT