Open skipm3 opened 6 years ago
@AlexeyAB is there any name for algorithm what YOLO used? Like haar cascade or something?
This is single-shot Convolutional Neural Network that is part of Deep Learning.
@skipm3 - What AlexeyAB said and you can also look at https://leonardoaraujosantos.gitbooks.io/artificial-inteligence/content/single-shot-detectors.html
@AlexeyAB @kooscode hi. i've read some things about CNN here in layer section.
@skipm3
@skipm3 - thats correct, it will resize the image equal to the network input size.
you can resize the network input size for YOLO easy by just changing the .cfg file for network definition.
but beware that larger network input size has exponential effect on memory and gpu utilization for training and inferencing.
BUT it helps a lot with detecting small items on larger images. i.e. we use YOLOV2 with a network input size of 512x512 for detection of small artifacts in aerial drone imagery.
but training requires lots of GPU memory and increased training time..
@AlexeyAB @kooscode I got this image Does YOLO just runs convolutional network? I mean, look at this. This is a ConvNet architecture: and this So, YOLO just input -> conv -> result?
@skipm3 Yes, as I said: https://github.com/AlexeyAB/darknet/issues/1330#issuecomment-410213365
This is single-shot Convolutional Neural Network that is part of Deep Learning.
Hi there. This is not an issue btw i just want to ask, what is algorithm used by YOLO? Any reference? Thank you.