This series of Faster R-CNN is amazing and well explained. Thanks for sharing the details!
@CodeWithAarohi3 жыл бұрын
Welcome
@soravsingla878211 ай бұрын
Amazing video ma’am. Please keep sharing
@CodeWithAarohi11 ай бұрын
Sure 😊
@yugpn63583 жыл бұрын
Yes It was helpful. Thanks for sharing !!
@CodeWithAarohi3 жыл бұрын
Glad it was helpful!
@justinamichael31611 ай бұрын
Clear and superb explanation...
@CodeWithAarohi11 ай бұрын
Thank you 🙂
@sridhurkeshsivaprakasam85914 жыл бұрын
At first thanks for this video. Best explanation with implementation that i ever seen in youtube. Could you please tell how to train faster rcnn model?...Because i am more confused about that part
@CodeWithAarohi4 жыл бұрын
Sure, I will do video on that part soon.
@curious523 Жыл бұрын
what is the input_rois fed to the classifier layer? Where do we define it? is it the output of RPN? if yes, should I call rpn_layer or rpn_to_roi to get value for input_rois?
@pifordtechnologiespvtltd569811 ай бұрын
Nicely explained
@CodeWithAarohi11 ай бұрын
Thank you so much 🙂
@pifordtechnologiespvtltd569811 ай бұрын
Excellent
@CodeWithAarohi11 ай бұрын
Thanks
@ratangles8203 жыл бұрын
Hi! Thanks for this video!! Is there any video after this one? That wraps everything to use it? You are amazing! Thanks!!
@CodeWithAarohi3 жыл бұрын
welcome... You can check this video: kzbin.info/www/bejne/mnKXoYl9hpacqc0
@camilamoro70252 жыл бұрын
Hi Aarohi, Thank you for the video series it has been so helpful. I am a bit stuck with the testing part. Would you simply iteratively apply the functions in the rpn_layer and classifier files?
@uni13573 жыл бұрын
thanks for the great videos and explanations. Will you do any video on the testing phase of Faster RCNN? Thank you.
@CodeWithAarohi3 жыл бұрын
Will try to do
@shivaagrawal61152 жыл бұрын
Hello Aarohi, thanks a lot for this wonderful video. One question, during the ROI pooling, why num_roi = 4 is selected ?
@brunogreen253 жыл бұрын
Thank you VERY MUCH for this very nice explanation of Faster RCNN's implementation. Could you, also, please specify which Tensorflow/Keras versions were you using?
@CodeWithAarohi3 жыл бұрын
Glad my video helped you. I am using python 3.6.8, tensorflow 1.15.0, keras 2.2.5 and h5py version 2.10.0
@jawadhaidar3931 Жыл бұрын
thank you for the video. I think there is a mistake in the RIOpooling function, the output should be the resized feature maps and not the resized image
@CodeWithAarohi Жыл бұрын
Thank you for bringing this to my attention. I appreciate your diligence and attention to detail. I will check that
@pifordtechnologiespvtltd569811 ай бұрын
Excellent #BestAILearningChannel #CodeWithAarohi
@mahesh1234m4 жыл бұрын
Good Explanation Madam. But Could you please add NMS also which is part of ROI pooling.
@CodeWithAarohi4 жыл бұрын
Actually I have explained NMS in yolo algorithm, that's why not repeated here
@curious523 Жыл бұрын
Hi Aarohi, I'm trying to replace the classifier of faster RCNN with KNN. After flattening the ROI pooling layer output, I need to convert it to numpy array and then pass it to KNN. The problem is I can not convert kerasTensor to NumPy array. I tried many ways. Does anyone have any ideas? thank you in advance
@CodeWithAarohi Жыл бұрын
Without trying I can't tell you what exactly the issue is?
@parthapratimbarman70203 жыл бұрын
Thank you so much, ma'am. Can you please show the training and testing part also with some loss function to get some training accuracy after running for some epochs?
@mehnaztabassum18783 жыл бұрын
Could you pls give the link to the RCNN test part? Thanks for the nice explanation.
@CodeWithAarohi3 жыл бұрын
Hadn’t made video on that part yet
@omarabubakr65242 жыл бұрын
9:59 can I play with the number of dense layers or it is static in faster r-cnn
@Ray-yh8lx11 ай бұрын
the github link you provided , has 3 files . now how to use them for detection purpose , like the training testing etc part. please share that
@bangarrajumuppidu83543 жыл бұрын
clear cut explanation madam
@CodeWithAarohi3 жыл бұрын
Thank you 🙂
@teetanrobotics53633 жыл бұрын
Amazing content Aarohi. Thank you. Could you please reorder the videos in the Deep Learning and the object detection playlists in the correct order?
@CodeWithAarohi3 жыл бұрын
Sure, Will reorder the videos of my Playlist
@TheAravindppadman3 жыл бұрын
why it is (nb_classes - 1) in out_regr instead of nb_classes?
@CodeWithAarohi3 жыл бұрын
-1 because we don't want to work for background class
@sarithapodali37822 жыл бұрын
Is there a reason why the model would result in 0 positive anchors?
@CodeWithAarohi2 жыл бұрын
I think you need to train model for more epochs to solve this problem.
@sarithapodali37822 жыл бұрын
@@CodeWithAarohi Thank you for responding. I think I have some positive anchors now. That was very helpful!
@anjalinaidukarrotu14313 жыл бұрын
File "", line 26 out_class = Dense(nb_classes, activation='softmax', kernel_initializer='zero'), name='dense_class_{}'.format(nb_classes)(out) ^ SyntaxError: can't assign to function call please tell me what is the error
@KumarHemjeet2 жыл бұрын
Can we use polygonal annotations in faster RCNN?
@ranjan561 Жыл бұрын
can we use this model for numerical data ?
@CodeWithAarohi Жыл бұрын
While Faster R-CNN was originally designed for object detection in images, it can be used for other applications as well, including numerical data. However, using Faster R-CNN for numerical data may not be the best choice in most cases, as Faster R-CNN is optimized for object detection in images and may not perform well on numerical data.
@JackLee-oq2io2 жыл бұрын
could you share code de finetuning the detectron2_yolov7, please? Thanks
@CodeWithAarohi2 жыл бұрын
1st notebook is github.com/AarohiSingla/Detectron2-Tutorial/blob/main/Detectron_fasterrcnn_pretrained_coco.ipynb and 2 notebook have only 2 commands to run pip install alfred-py and pip install nbnb
@MovieMania-043 жыл бұрын
Mam what we pass in base path ?
@CodeWithAarohi3 жыл бұрын
Base path is the convolutional network which you use for feature extraction
@dhanalakshmispillai99694 жыл бұрын
I have send you rpy to your mail...
@CodeWithAarohi4 жыл бұрын
checked and replied
@dayanamary510310 ай бұрын
Tamil sollunga mam
@dhanalakshmispillai99694 жыл бұрын
Could you please check out the mail!
@CodeWithAarohi4 жыл бұрын
Hi, I have checked my email id but not any mail
@aresagathos20753 жыл бұрын
This video might be very good, but i cant watch it, because of the voice :( i'm so sorry. Not even when i take a shot every time she says "Aroay".
@CodeWithAarohi3 жыл бұрын
Sorry for the inconvenience.I will redo this video
@aresagathos20753 жыл бұрын
@@CodeWithAarohi Please don't redo the video, just some randoom guy complains about accent. A lot of people like your video. Right?
@CodeWithAarohi3 жыл бұрын
@@aresagathos2075 ok
@jesusgomez1280 Жыл бұрын
@@CodeWithAarohi No need to apologize or redo video. The video is not the problem. The problem is with so much unprofessional and racist people out there.
@jesusgomez1280 Жыл бұрын
You should take classes on diversity and inclusion! 😡
@HUEHUEUHEPony3 жыл бұрын
oh my god the accent
@jesusgomez1280 Жыл бұрын
You should take classes on diversity and inclusion!😡