C4W3L08 Anchor Boxes

  Рет қаралды 138,400

DeepLearningAI

DeepLearningAI

Күн бұрын

Пікірлер: 43
@MG5350
@MG5350 4 жыл бұрын
I feel that there are a lot of intricacies that are not explained. Great lecture hands down, but I'm starting to feel that I need concrete examples or implementation to understand many of these subtleties.
@dhidhi1000
@dhidhi1000 4 жыл бұрын
This is a video series, there is like 9 other videos explaining
@davidvultur8704
@davidvultur8704 2 жыл бұрын
kzbin.info/aero/PL_IHmaMAvkVxdDOBRg2CbcJBq9SY7ZUvs This seems to be the one
@ykpoff
@ykpoff 5 ай бұрын
@@dhidhi1000 so?
@nischalkhadgi8128
@nischalkhadgi8128 5 жыл бұрын
Great one. Was really helpful. Hope you put some demonstration as well.
@nidhihada1122
@nidhihada1122 5 жыл бұрын
One doubt. if we are specifying Bx By Bh Bw then we can specify any anchor box. Then for an image where two objects are present in same grid cell, sharing same shape of anchor box, even this can be solved by using their respective bx, by, bh, bw in output. Where in both anchor box have their own bx by bh bw. I could not understand why andrew says it can not be solved.
@sanjivgautam9063
@sanjivgautam9063 4 жыл бұрын
The anchor box concept is not clear. Hands down to great explanation till date though. I want to share few ideas here. During training, the label that contains bx,by,bh,bw is changed to be between 0 and 1. Obviously, bh and bw can be greater than 1. So for each of those "normalized" bounding boxes, we try to determine which of the predefined anchor box is suitable. How do we define the "suitability"? The IOU. So if we choose 5 anchor boxes, we check our normalized bounding box against all those 5 anchor box and determine which one has highest IOU, so we choose that anchor box as what Andrew NG has explained above. Also the loss function is bit of a headache to explain, here in comment. But would be great if Andrew had explained it himself. Nevermind though, we are getting videos from AI god himself!
@heejuneAhn
@heejuneAhn 4 жыл бұрын
Thank you, Prof. Ng, I learned a lot. One question or request for clarification. Is it that the anchor box shapes should be taken into account to the network receptive field? So we need to use non-squared convolutional filters? Thanks.
@koeficientas
@koeficientas 5 жыл бұрын
If I have only 2 classes, I can give hardwired anchor for each class per grid cell and deny the c1 c2 c3? So the output vector can be y=[pc1 bx by bh bw, pc2 bx by bh bw]? pc1 - probability of perestrian, pc2 - probability of car.
@rijulsingh9803
@rijulsingh9803 3 жыл бұрын
So the minimum bound on number of anchor boxes is the number of classes present? Also, is there a way to optimize the size of anchor boxes? I'm a little confused here. Everything else here is crystal clear, thank you so much for this tutorial!
@polimetakrylanmetylu2483
@polimetakrylanmetylu2483 2 жыл бұрын
If I understand it correctly, as for 1, no, you can specify any number of anchor boxes, and each one will output it's predictions for class. You can also only specify one or any arbitrarly low/high number of them - there is no relation between number of classes and number of anchor boxes. As for 2, your NN will not output the entire bounding box, but instead it outputs the correction of an anchor box. They have to be defined when you create the model. What you can do is collect every bounding box from your dataset as width-height pair, and either plot it and look at it, or run some clustering algorithm to find optimal sizes
@sandipansarkar9211
@sandipansarkar9211 3 жыл бұрын
nice explanation
@TheKovosh
@TheKovosh 4 жыл бұрын
if I have a fixed size anchor box, then what is the point of bw and bh
@thomasqiao916
@thomasqiao916 4 жыл бұрын
bw and bh define the anchor box
@marcoburkhardt6496
@marcoburkhardt6496 3 жыл бұрын
just good. thanks a lot :)
@adityarajora7219
@adityarajora7219 4 жыл бұрын
how it can predict bounding box larger than grid cell................explain, please.....if anyone knows YOLO
@sanjivgautam9063
@sanjivgautam9063 4 жыл бұрын
Here is that thing. We actually have bx and by which falls between 0 and 1. However, the bw and bh (width and height) can have values more than 1, so that any object that goes beyond the grid cell is incorporated with that bh and bw. Did you get the point? In one of his videos, he explains how bx and by falls between 0 and 1 whilst bh and bw can go higher than 1.
@adityarajora7219
@adityarajora7219 4 жыл бұрын
@@sanjivgautam9063 thanks......but still I didn't get intuition.......could you give that video reference.
@sanjivgautam9063
@sanjivgautam9063 4 жыл бұрын
@@adityarajora7219 kzbin.info/www/bejne/nXzVlo2Fis5ghZI. I think you are following a playlist that doesn't have one video in it. The video in this link explains the bounding box rules.
@TheKovosh
@TheKovosh 4 жыл бұрын
One video is missed that's why I have problem understanding the rest.
@rohitborra2507
@rohitborra2507 4 жыл бұрын
if u find it please keep the link bro
@aymannaeem22
@aymannaeem22 4 жыл бұрын
kzbin.info/www/bejne/nXzVlo2Fis5ghZI&list=PL_IHmaMAvkVxdDOBRg2CbcJBq9SY7ZUvs&t=656
@keweml3544
@keweml3544 3 жыл бұрын
I think anchor box algorithm is for those problems lying somewhere between image classification and pixel classification. Recognizing an object that is either the entire image or a pixel is really tricky.
@anujk.9893
@anujk.9893 5 жыл бұрын
If we define the shape and size of anchor boxes, won't we need only 2 outputs to identify it. Bx and By would be enough. We should not need Bh and Bw ? Please explain if someone knows
@tomvandewiele7031
@tomvandewiele7031 5 жыл бұрын
We predict an arbitrary height and width so we do still have to output Bh and Bw. With anchor boxes, the IoU is used to pick the best matching anchor box shape of the labeled data. The target shape (together with Bx, By and the class) is only set as a target for the best matching anchor box.
@nithinmesingerme6976
@nithinmesingerme6976 2 жыл бұрын
As the size of anchor boxes are fixed.. how the same kind of object, one which very close and one which very far works??
@EranM
@EranM 5 жыл бұрын
0:25 right in the nuts
@HabibRK
@HabibRK 5 жыл бұрын
it's a she
@lovemormus
@lovemormus 5 жыл бұрын
@@HabibRK how do you know it's a she
@ganonlight
@ganonlight 3 жыл бұрын
These anchor boxes seem more like a workaround than an actual solution tbh
@vishaljain4915
@vishaljain4915 3 жыл бұрын
Agreed, do you have a better idea
@ganonlight
@ganonlight 3 жыл бұрын
@@vishaljain4915 No not really
@vishaljain4915
@vishaljain4915 3 жыл бұрын
@@ganonlight 😂😂😂 me neither aha
@ganonlight
@ganonlight 3 жыл бұрын
@@vishaljain4915 😅
@akashkewar
@akashkewar 3 жыл бұрын
Anchor boxes are one of the many ways you can use for object detection. Algorithms like "CornerNet" don't use anchor boxes to locate objects but keypoints. Some algorithm also uses pose estimation or/and semantic segmentation to give you pretty accurate bounding boxes prediction like Pose2Seg and so on. Just google search "anchorless object detection". Also, tbh most of the stuff you see in machine learning is "workaround", but it's magic to see them work so great. There is no silver bullet that could solve all the problems, machine learning is all about choosing the right tools and being creative to the problem given in hand.
@ShubhamKumar-me7xy
@ShubhamKumar-me7xy 2 жыл бұрын
Mid point of pedestrian :xd
@sandipansarkar9211
@sandipansarkar9211 3 жыл бұрын
nice explanation
@guardrepresenter5099
@guardrepresenter5099 5 жыл бұрын
What is pc and how pc know himself 0,1 before c1,c2,c3 are unknown????
@adityarajora7219
@adityarajora7219 4 жыл бұрын
PC shows there is "something" with probability and c1,c2,c3 describes what this "something" actually is.
@dota2islife262
@dota2islife262 5 жыл бұрын
what is the name of the course on Coursera
@maxbaugh9372
@maxbaugh9372 3 жыл бұрын
Deep Learning Specialization - Course 4: Convolutional Neural Networks
C4W3L09 YOLO Algorithm
7:02
DeepLearningAI
Рет қаралды 221 М.
C4W3L01 Object Localization
11:54
DeepLearningAI
Рет қаралды 154 М.
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 37 МЛН
Players vs Corner Flags 🤯
00:28
LE FOOT EN VIDÉO
Рет қаралды 68 МЛН
The joker favorite#joker  #shorts
00:15
Untitled Joker
Рет қаралды 30 МЛН
Fast R-CNN: Everything you need to know from the paper
38:37
Soroush Mehraban
Рет қаралды 13 М.
C4W3L10 Region Proposals
6:28
DeepLearningAI
Рет қаралды 90 М.
Anchor Boxes | Essentials of Object Detection
9:27
Kapil Sachdeva
Рет қаралды 10 М.
Focal Loss for Dense Object Detection
12:57
ComputerVisionFoundation Videos
Рет қаралды 32 М.
The Boundary of Computation
12:59
Mutual Information
Рет қаралды 1 МЛН
How YOLO Object Detection Works
17:04
DeepBean
Рет қаралды 36 М.
Mask Region based Convolution Neural Networks - EXPLAINED!
9:35
CodeEmporium
Рет қаралды 153 М.
Detection Head | Essentials of Object Detection
15:32
Kapil Sachdeva
Рет қаралды 5 М.
YOLO Object Detection (Part 1)
18:53
SCET Berkeley
Рет қаралды 47 М.
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 37 МЛН