This is the best lecture that I have ever seen since SICP,so beautiful
@glowish199311 ай бұрын
thank you for posting such high-quality lectures online for free!! amazing lecturer, slides and content
@neilteng17353 жыл бұрын
Really love this step by step walk through! Hugh improve than the 2017cs231n course!
@tunaipm3 жыл бұрын
Another amazing class! I look forward to watching the updated version describing the use of Transformers in the coming years. Thank you Dr. Justin.
@terrelldean94813 жыл бұрын
I know it's quite off topic but does anyone know of a good site to watch new series online?
@chiendvhust81222 жыл бұрын
@@samuelimran3429 Can you send a link? I search google but dont see anything :(
@sagniksinha58312 ай бұрын
@@chiendvhust8122 latest videos are not publicly available
@sachavanweeren95782 жыл бұрын
Great lecture, very welll explained, step by step. Maybe the best I found so far.
@TomChenyangJI4 ай бұрын
I watched a lecture on RNN delivered by him on Stanford channel on YT, that was good
@harshdeepsingh38723 ай бұрын
@kamranmehdiyev856111 ай бұрын
57:53 should be "from anchor box to proposal box"
@NielsRogge3 жыл бұрын
Looking at this coming from NLP, NLP seems like so much easier where you just have a Transformer with a sequence classification/token classification head on top.. Here you have a very complex way of computing mAP, region proposals, non-maximum suppression procedure, anchor generation... Luckily, the introduction of DETR by Facebook AI (which replaces a lot of these handcrated features by a Transformer which learns everything end-to-end) seems really refreshing :)
@adityarajpoot82142 жыл бұрын
too late now
@mailoisback2 жыл бұрын
He is a great lecturer!
@daitran82663 жыл бұрын
Thank you very much for sharing these useful resources.
@DED_Search3 жыл бұрын
49:59 how to project RoI onto feature map exactly? 50:10 does snapping projection to feature map grid affect transformation parameters of the bounding box regression?
@itchainx4375 Жыл бұрын
No you get wrong understanding. Box was obtained using heuristic methods on the original picture. The convnet can be seen as a transformaion. It converts the cat's picture into feature map. The convert process is the process of projection
@satyamgaba2 жыл бұрын
31:20 Purple box should be union of both the box. Here is it overflowing
@lifanzhong9782 Жыл бұрын
Thank you Justin!!
@krishnatibrewal66402 жыл бұрын
Surprisingly there's no mention of YOLO which makes RCNN family obsolete
@zainbaloch55412 жыл бұрын
Yeah!
@itchainx4375 Жыл бұрын
Seems like teacher don't like Yolo. 2022Winter Lectures not even a word about yolo was mentioned
@lifanzhong9782 Жыл бұрын
yes I'm curious about it too. Only a flash of yolo paper reference at 1:03:57
@davidrwasserman2 ай бұрын
When we compute the average precision (42:52) is this for one image? a batch? the whole training set?
@lumin-ec1mf24 күн бұрын
all test images
@wireghost897 Жыл бұрын
Great lecture. Thanks a lot.
@shazzadhasan40672 жыл бұрын
thank you for making available, amazing lec
@Davide-bx3js2 жыл бұрын
Amazing lecture
@yahaisha2 жыл бұрын
best lecture..i like..tq
@neelambujchaturvedi68864 жыл бұрын
Why do the authors of the RCNN paper use a log scale transform to get the new scale factors for width ?
@zubaidaalsadi43138 ай бұрын
I can't download the slides , is there any other way to get it ?
@cc98-oe7ol6 ай бұрын
The resolution of these slides are quite high, so their size often exceed like 100 MB. Maybe the network is the main issue.
@QuyetNguyen-sg9dq4 жыл бұрын
thanks you very much
@DED_Search3 жыл бұрын
42:12 I am really confused about why all dog detections are considered positive here (precision = 3/5)? Shouldn’t we set a threshold? Thanks.
@DED_Search3 жыл бұрын
59:00 I don’t quite get the 2k anchor (2 scores) vs 1k (1 score) part. Hmmm
23:00 and 23:41 how is transformation learnt invariant to RoI warp?1. Warpping changes height and width. 2. Warped RoI are fed into CNN. I’d appreciate if anyone can shed some light here. Thanks.
@itchainx4375 Жыл бұрын
Do you know the answer now?I have same question
@lukealexanderhwilson3 жыл бұрын
I wonder if mean average precision could be calculated faster while still incorporating the performance of the bounding boxes by simply factoring the detections by their IOU's and using the results instead of rerunning at many different thresholds and averaging. For example, perfect Mean Average Precision would impossibly be the first detections all correctly identifying the detectable objects in the image, and the detections all had an IOU of 1.0. Essentially rather than calculating the area under a curve on a 2D plot with precision and recall and replotting many times at various thresholds. We would instead calculate a 3d volume, where a 2d plot of detections matched against a third dimension that represents the IOU (or some factored IOU if it's better). It seems to me that that would achieve the same results more quickly and elegantly, if anyone knows more though I would love to hear about it!