Hi @AlexeyAB
I found out some articles that implement yolo v2 using Mobilenet as a backend.
ex: https://github.com/experiencor/basic-yolo-keras
However this is using keras so I'm wondering if it's possible to do the same thing using darknet ?
Thanks
But there isn't MobileNet wegihts for classification network, so you will train your own detection network without pre-trained weights: ./darknet detector train obj.data mobile-yolo.cfg
Hi @AlexeyAB I found out some articles that implement yolo v2 using Mobilenet as a backend. ex: https://github.com/experiencor/basic-yolo-keras However this is using keras so I'm wondering if it's possible to do the same thing using darknet ? Thanks