Kamel BOUYACOUB
Kamel BOUYACOUB

Reputation: 647

Process to build our own model for image detection

Currently, I am working on deep neural network for image detection and I founded a model called YOLO Network, and it's very powerful to make objects detections, but I have a question:

I use Tensorflow.

Thanks,

Upvotes: 3

Views: 220

Answers (1)

Thomas Pinetz
Thomas Pinetz

Reputation: 7148

There are a couple of papers addressing this issue. For example in http://www.cv-foundation.org/openaccess/content_cvpr_2016/papers/Szegedy_Rethinking_the_Inception_CVPR_2016_paper.pdf some general principles are mentioned, like preserving information by not having too rapid changes in any cut of the graph seperating the output from the input.

Another paper is https://arxiv.org/pdf/1606.02228.pdf where specific hyperparameter combinations are tried.

The remainder are just what you observe in practice and depends on your dataset and on your requirement. Maybe you have performance requirements because you want to deploy to mobile or you need more than 90 % accuracy. Then you will have to choose your model accordingly.

Upvotes: 2

Related Questions