How to train Mask RCNN on your own dataset.
- Ubuntu 16.04
- Python 3.5
- Tensorflow-gpu 1.8
- Keras 2.1.6
Creating virtualenv
$ cd Training-Mask-RCNN
$ virtualenv env --python=python3.5
$ source env/bin/activate
Install Dependencies
$ pip install -r requirements.txt
Training on Your Own Dataset
# Train a new model starting from pre-trained COCO weights
$ python trainer.py train \
--dataset=/path/to/dataset \
--weights=coco
Tool to annotate images