bommina
bommina

Reputation: 317

dlib cnn python, is there any way or wrapper for python to do cnn based object training

I'm working on object detection using dlib, I was going through python implementation. I tested couple of examples from dlib python examples, specially i worked on train_object_detector.py. this works well. Now I would like to train same data model on CNN based object detector mode But i could not find python implementation for training CNN using python, but there is c++ example. (dnn_mmod_ex.cpp). I think it seems i'm missing something or python implementation is not available? if python implementation is not available, then should i switch to c++ for CNN based object detector training

Upvotes: 2

Views: 781

Answers (1)

Davis King
Davis King

Reputation: 4791

Yes, use C++ for CNN training. The dlib DNN tooling is meant to be used from C++ and so uses C++11 features that can't be represented in Python.

Upvotes: 5

Related Questions