Training Naruto characters detctor with Tensorflow Object Detection API using Google Colab
- Use the
RectLabel
to bulid your own training dataset easyly on MAC OS(No alternative found on windows). - Extract
sub-dataset
from COCO Dataset(Needed category only)
Process Locally
- Get the XML_files(labels info) of each image
- Convert XML_files to CSV file
Process on Google Colab
- Convert
images+CSV_file
to tfrecord(Binary File)
Using the ObjectDetectionAPI_Training_Naruto.ipynb
(Please pay attention to the Path or folder name)
Download the Google Object Detection API Library(Reference).
You can download the pretrained detection model in google object detection zoo
Different Model correspond to different cofig_file(In "models/research/object_detection/samples/configs/"
)
- [Note]: Can not modify the parameter of
val.record
, you may need to download and edit it locally with correct path of test dataset.
Spend different amounts of time according to the specified number of training steps
- [Note]: Interruption of the connection with remote google GPU may occurred, dont't worry about it, we have saved the training processing file in the
training folder
, we can ignore the interruption and continue training from the breakpoint
Reference to my another repository(exportMobileNet_SSDSeries)