Convolutional Neural Network Tutorial (CNN) | How CNN Works | Deep Learning Tutorial | Simplilearn

Поделиться
HTML-код
  • Опубликовано: 12 дек 2024

Комментарии • 505

  • @SimplilearnOfficial
    @SimplilearnOfficial  3 месяца назад +4

    "🔥Caltech Post Graduate Program In AI And Machine Learning - www.simplilearn.com/artificial-intelligence-masters-program-training-course?Jy9-aGMB_TE&Comments&RUclips
    🔥IITK - Professional Certificate Course in Generative AI and Machine Learning (India Only) - www.simplilearn.com/iitk-professional-certificate-course-ai-machine-learning?Jy9-aGMB_TE&Comments&RUclips
    🔥Purdue - Post Graduate Program in AI and Machine Learning - www.simplilearn.com/pgp-ai-machine-learning-certification-training-course?Jy9-aGMB_TE&Comments&RUclips
    🔥IITG - Professional Certificate Program in Generative AI and Machine Learning (India Only) - www.simplilearn.com/iitg-generative-ai-machine-learning-program?Jy9-aGMB_TE&Comments&RUclips
    🔥Caltech - AI & Machine Learning Bootcamp (US Only) - www.simplilearn.com/ai-machine-learning-bootcamp?Jy9-aGMB_TE&Comments&RUclips"

  • @SimplilearnOfficial
    @SimplilearnOfficial  6 лет назад +9

    Machine Learning is the Future and yours can begin today. Comment below with you email to get our latest Machine Learning Career Guide. Let your journey begin.
    Do you have any questions on this topic? Please share your feedback in the comment section below and we'll have our experts answer it for you.
    Thanks for watching the video. Cheers!

    • @yogeeshagarwal7738
      @yogeeshagarwal7738 6 лет назад

      hey , i was training the model for 1500 times instead of 500 and i reached an accuracy of .6780.. how do u explain thay accuracy and also when predicting the label of a particular image it is giving a totally random label instead of right one....so what do u think is the problem ...well also i am initializing the variables again during testing of the particular image...is that why i am getting totally wrong output?

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Hi Yogeesh, 0.67 is a pretty good accuracy if you attain it with just 500 iterations. Try running it for 1000 iterations. The precision will certainly increase. Please don't initialize the variables repeatedly while testing an image.

    • @yogeeshagarwal7738
      @yogeeshagarwal7738 6 лет назад

      @@SimplilearnOfficial hey , i got this accuracy after 1500 epochs... and also how to predict an image's label after training it? cause i fed an image into the network and a label and tried running the network but it showed the error as "attempting to use uninitialized variables." so my question is how to load or use the trained model weights and predict image since i am not using keras ?

    • @supersonic1240
      @supersonic1240 6 лет назад

      Hi. First of all thank you very much for such a great video. The question is how yo chose the filter. At the begining you said that you will talk about it, but you didnot. May be i missed. ??!?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Please initialize the variable you want to predict and then run it. Use Jupyter notebook and TensorFlow to do it. Keras is now built on top of TensorFlow.

  • @ankitbhardwaj9566
    @ankitbhardwaj9566 4 года назад +4

    sir it was a great video and was extremely helpful for me to learn cnn from scratch

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Glad to hear that! Do subscribe to our channel and stay tuned for more.

  • @taran7954
    @taran7954 5 лет назад +1

    Hello how do we obatain the filters I mean how does backpropagation happens to get the best filter or weights please help I am not able to understand this

  • @aaditya4998
    @aaditya4998 Год назад +1

    Hi, really a great tutorial on CNN, small doubt suppose i download a bird image from the net and reshape it into 32X32, how can i feed that into this model to get the classified value.

  • @meltjl
    @meltjl 5 лет назад +1

    At 5:26 , a = [5,3,7,5,9,7] but in within the blue frame it shows a = [5,3,2,5,9,7] ie the 3rd number is different. Is that a typo? if not, how did 7 change to 2?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi, Thanks for bringing this to our notice. This is certainly a typo error.

    • @mengop
      @mengop 5 лет назад +1

      @@SimplilearnOfficial I too noticed this, thought typo.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      @@mengop Good eye! Our mistake.

  • @ashnafirdaus3295
    @ashnafirdaus3295 5 лет назад +2

    I'm doing handwritten alphabet recognition using CNN.could you help me in this?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад +1

      Hi Ashna, you can check out this link to learn about : www.researchgate.net/publication/308809184_CNN_based_common_approach_to_handwritten_character_recognition_of_multiple_scripts: CNN based common approach to handwritten character recognition.

  • @hassanmusa155
    @hassanmusa155 4 года назад +1

    HI simplilearn i found this video educated and relevant please can you let have the codes and other relevant materials for the lecture. please how can i process a sequence of geospatial images?

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      "Hi Hassan,
      Here is a link that will help you understand about CNN www.simplilearn.com/tutorials/deep-learning-tutorial/convolutional-neural-network"

  • @najwameftah3581
    @najwameftah3581 3 года назад +2

    greate tutorial ,thank you very much! how to use CNN for face recognition please give me matlab code

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Hey, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)

  • @muhammadtanveer3194
    @muhammadtanveer3194 3 года назад +1

    Hello Sir. Thanks for the great video. I am facing problem whenever i develop CNN network it shows accuracy around 90 to 95%.But when i reused it with same data its accuracy decreases. It doesn't shows same result. Will you kindly help me?

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Glad you enjoyed our video! We have a ton more videos like this on our channel. We hope you will join our community!

  • @devikabihani3948
    @devikabihani3948 5 лет назад +3

    in x.reshape(train_len,3,32,32).transpose(0,2,3,1) 32*32 is the size of the actual image? and what if the size of my image is 32*64 or something else?

  • @jancirani6957
    @jancirani6957 5 лет назад

    @12:20 What does negative pixels refer to, since the pixels are only 1 and 0?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад +1

      A ReLU activation function provides non-linearity in convolutional layer. In the feature map, ReLU replaces all the negative pixels to zero. This will convert all the black pixels to non-negative values.

  • @shwetaredkar734
    @shwetaredkar734 5 лет назад +1

    I have started exploring deep learning recently. To my surprise, I can only find tutorials about deep learning/CNN/LSTM/ RNN on youtube that are meant only for image classification.
    How does one implement it for structured data?
    For example, suppose I have a .csv file having data matrix of 200000 observations and some 1000 - 2000 features, how does one implement such a problem?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Shweta,
      We do have videos on Deep Learning where the demo is based on structured data. Refer to the below links:
      ruclips.net/video/E8n_k6HNAgs/видео.html
      ruclips.net/video/_NMI8peAmNA/видео.html

  • @usamamaqbool1692
    @usamamaqbool1692 6 лет назад +11

    Excellent lecture. Highly appreciated. Can you please add a lecture on depth prediction from a single RGB image using CNN? And various kinds of filters that are used in CNN for feature extraction specifically for depth prediction of various obstacles in a single RGB image.
    Regards

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Hi Usama, thanks for the kind comment. We are glad to have helped. We acknowledge your suggestion and we will definitly transfer this to the relevant team. Do show your love by subscribing our channel using this link: ruclips.net/user/Simplilearn and don't forget to hit the like button as well. Cheers!

  • @ElectronicFanArm
    @ElectronicFanArm 5 лет назад +1

    Hi friend, which library you are using for this tutorial?

  • @woodruffshnibble8769
    @woodruffshnibble8769 6 лет назад +2

    Great lecture, Next week i will do a presentation about CNN on powerpoint can i use screen capture for some illustrations ?

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +1

      Hi Woodruff, thanks for the kind comment. We are glad to have helped. You can use our content for your presentation without editing the slides and it should be strictly for non-commercial use. Hope that helps!

  • @susmithakolli1525
    @susmithakolli1525 5 лет назад +1

    Can you please explain how the filters are obtained in the first step of convolution layer?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      In the first layer, we are applying a convolution filter operation using the function "convolution_layer()". Here, we are providing the size of the filter, the different channels and the number of pixels. To the same 1st layer, we also apply a max pooling layer. Hope this helps!

  • @patrickmatimbe18
    @patrickmatimbe18 5 лет назад +2

    thank you so much for the tutorial sir helped me a lot in understanding CNN.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Patrick, thanks for appreciating our work. We have shared the dataset to your mail ID. Do show your love by subscribing our channel using this link: ruclips.net/user/Simplilearn and don't forget to hit the like button as well. Cheers!

  • @Vedantavani3100BCE
    @Vedantavani3100BCE 4 года назад +2

    why do we use convolution ??? why not just simple ANN in case of image ?? main question is what is need of convolution in CNN?? please Answer....

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад +1

      "Hi Krishna,
      CNN is mainly used for image classification and recognition task. The convolution layer in CNN identifies and extracts the features in the dataset. ANN is not a algorithm to solve a problem."

  • @GRENKEChess
    @GRENKEChess 5 лет назад

    Outstanding video! One question: Is it possible to analyze whole RUclips videos frame by frame with CNNs? What do you think about the analysis of video data with ML approaches?
    Do you thinik there are nice applications besides Autonomous driving?

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      "Hi Grenke,
      It is possible to analyze any video. There are lot of other applications in Deep Learning apart from Self driving cars. Watch this video to know more: ruclips.net/video/1LxmmF88fDw/видео.html

  • @ayushiverma5617
    @ayushiverma5617 2 года назад

    Awesome Covers all my doubts in this lecture

  • @Gopikha6
    @Gopikha6 4 года назад

    Convolutional neural network works on gray scale images.Hope so.Raw Rgb image is given as input to train neural network,then rgb is converted to gray scale images.Then how the color is trained.if it an image, it learn the features of the image.It is simply only colors.How it works??will you clarify my doubt

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      "Hi Gopikha,
      In CNN, the images are fed in the form of color pixels. The model trains itself based on these pixels and identifies each part from the image. These pixels in variable intensity and size."

  • @mengop
    @mengop 5 лет назад +1

    Thank You very much for a fantastic detailed CNN walkthrough. Would you mind sharing the code and dataset to my mailid. What are the other possible activation functions apart from RELu, Did I miss to notice the Filter Stride explanation.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Mengop, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @lsagar
    @lsagar 5 лет назад

    where did "data_batch1" at 24:27 come from?? did i miss a part of a video??

    • @psy0rz
      @psy0rz 5 лет назад

      He skips over it

  • @ritwiksinha7432
    @ritwiksinha7432 3 года назад

    Video is awesome to understand CNN, but in the practical part, the first 7 input and output is not there in the video. Kindly help me out, how to import data, from where data can be downloaded?

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Hello, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we can send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that too. Hope that helps.

  • @lifeOnTwoWheels_
    @lifeOnTwoWheels_ 6 лет назад +1

    Hi there! I want to predict my own image after training CNN . How to do that? please help!

    • @waqardanish1635
      @waqardanish1635 6 лет назад +2

      You'll obviously need a lot of your own images to train the CNN.

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +2

      To predict your own image using CNN, you need to have a huge collection of your pictures (around 40k). Also, the image sizes should not be very large, otherwise it would take a lot of time to process the images. Make sure the dimensions of the images do not very much. Then, use any simple CNN model (MNIST preferably) to build the model. Hope that helps!

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Thanks for your reply, Waqar.

  • @pellythirteen5654
    @pellythirteen5654 4 года назад

    Who (and how) designs the filters in a convnet ? Can filter design be automated ?
    It is said that AlphaZero Chess trained itself without any human interference , but if Alpha uses CNN those filters must have been created by Alpha itself … like treating a filter as another parameter.

  • @windiasugiarto6041
    @windiasugiarto6041 4 года назад +5

    Hi, I am a newbie on Machine Learning, let alone Deep Learning.. Thank you very much for the tutorial.. I really learnt a lot watching it.. I'm just wondering if you try to input a 32x32 image of a thing not classified as one of the 10 labels to the model, what would happen? And how do you do that?

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад +1

      "Hi Windia,
      The CNN model will classify it as a random label out of the 10 labels if that images has not been trained."

  • @cursos_enlinea
    @cursos_enlinea 5 лет назад

    Thanks by the video.I am a ecuadorian ingenier, I am starting to study CNN, I need classify images teen and no teen, Do you have any example?, help me please...

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hello Sergio, thanks for viewing our tutorial and we hope it is helpful. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly.

  • @Gopikha6
    @Gopikha6 4 года назад

    Dope tutorial. Is it possible to train and predict colors using convolutional neural networks??

  • @karthikeyan4p
    @karthikeyan4p 5 лет назад

    I like this video and the way it has been explained. But can someone help me with the code in the video to try with CIFAR-8 dataset.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Karthikeyan, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested source code of CNN promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @shobanadevi9582
    @shobanadevi9582 5 лет назад +2

    good explanation. Thank you so much.. I have one doubt, in line 29, conv2 layer, how do you determine 64 ? is there any calculation over there or we can give any ? pls explain.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Shobana, when we use a 3x3 filter, we usually provide 32 or 64 nodes. There is no mandatory rule for this. Hope that helps!

  • @Laflamablanca969
    @Laflamablanca969 5 лет назад +1

    Great video. 27:55 that is an emu lol...

  • @sudheeshrs2621
    @sudheeshrs2621 5 лет назад

    The bird at 21.04 is a malabar hornbill?

  • @dharavathsaiteja8765
    @dharavathsaiteja8765 4 года назад +1

    sir from where should i download dataset

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hi Dharavath, we have sent the requested dataset to your mail ID. Thanks.

  • @karimyahiatene3908
    @karimyahiatene3908 3 года назад +1

    Thank you for this very interesting cours, can you please send me the source code to play with it ? thank you :)

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Hello, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we can send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that too. Hope that helps.

    • @karimyahiatene3908
      @karimyahiatene3908 3 года назад

      @@SimplilearnOfficial my email ID karim.yahiatene.1987@gmail.com

  • @kapilsharma7276
    @kapilsharma7276 5 лет назад

    Please upload the link of the ppt you used in it. I have my presentation. I will thank your for life.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад +1

      Hi Kapil, you can check out the slides using this link: www.slideshare.net/Simplilearn/convolutional-neural-network-tutorial-cnn-how-cnn-works-deep-learning-tutorial-simplilearn.

  • @hermesmorales8727
    @hermesmorales8727 4 года назад

    Hello. Excelente. Does the code run in tf 2?

  • @payalmittal572
    @payalmittal572 6 лет назад +5

    Kindly share step 1, 2 and 3 of CIFAR 10 dataset preprocessing step of implementation of CNN. I will be very thankful to you.

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +1

      Hi Payal, thanks for watching our tutorial. It would be great if you could provide your email ID so that we can send the source code and screenshots of the steps where you need our assistance. Thanks.

    • @abhilash_p
      @abhilash_p 6 лет назад +1

      @@SimplilearnOfficial Thanks for this video! Please send me the code for it to my email id: abhilashpandurangan@gmail.com

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +3

      Hi Abhilash, thanks for watching our tutorial. We have sent the requested dataset to your mail ID. Do subscribe to our channel and get our new video updates directly into your email. If you have any questions related to these videos, you can post in the comments section, we will clear your queries/doubts.

    • @Mohamm-ed
      @Mohamm-ed 6 лет назад

      Simplilearn Thanks for this great video... Could you please send me the dataset. My email ID is mohammad.ghanim1982@gmail.com

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +2

      Hi Mohammad, thanks for watching our tutorial. We have sent the requested source code to your mail ID. Do subscribe to our channel and get our new video updates directly into your email. If you have any questions related to these videos, you can post in the comments section, we will clear your queries/doubts.

  • @GasparinPR
    @GasparinPR 3 года назад +2

    Hey thank you for this lecture! I’ve subscribed and liked! Anyway I can get the python file? That would really be appreciated!

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Hello, thanks for viewing our tutorial. You can find your requested dataset in the video description. Hope that helps.

  • @lrusso4570
    @lrusso4570 5 лет назад

    Great tutorial, thank you very much! Could you please send me the code and dataset for it? I'd greatly appreciate it.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Russo, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @4901shamim
    @4901shamim 5 лет назад

    Thanks for your nice video

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      We are so grateful for your kind words. Also, subscribe to our channel and stay tuned for more videos. Cheers!

  • @tezmaggot
    @tezmaggot 5 лет назад

    Hi and thanks for the great video! I'm having trouble understanding what's being done in the ReLU layer. If i base myself on the convolved matrix in the convolution layer demo, what happens to it in the ReLU layer?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад +2

      ReLU layer in CNN uses a Rectified Linear Unit function to increase the non-linearity in the images you are training. An image contains a lot of non-linear features such as transition between the pixels, the borders and colors. ReLU enhances these features to indentify the images better.

  • @josealexandrecorreia2522
    @josealexandrecorreia2522 5 лет назад

    This is great! Could you please send me the dataset?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Jose, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @Userss-c5u
    @Userss-c5u 4 года назад +1

    Awesome

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад +1

      Thank you! Please subscribe to Simplilearn channel and stay updated with all the latest trending technologies.

  • @tnpsc9215
    @tnpsc9215 5 лет назад

    Any course materials are available sir

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello, thanks for viewing our tutorial and we hope it is helpful. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly.

    • @tnpsc9215
      @tnpsc9215 5 лет назад +1

      @@SimplilearnOfficial sir i need a more information about an neural network sir ,can I send my mail id sir? Another question is how to develop project in neutral network (deep learning)

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад +1

      Hi, it would be really helpful if you can take up a course on Deep learning using Tensorflow. For more info, click here: www.simplilearn.com/deep-learning-course-with-tensorflow-training.

    • @tnpsc9215
      @tnpsc9215 5 лет назад +1

      @@SimplilearnOfficial thank you sir this is very use full for me sir

    • @tnpsc9215
      @tnpsc9215 5 лет назад +1

      @@SimplilearnOfficial this course is very useful sir

  • @whatacomedy177
    @whatacomedy177 5 лет назад

    Excellent work sir, you explained each and everything perfectly. Thanks a lot

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hey Prasen, thank you for appreciating our work. We are glad to have helped. Do check out our other tutorial videos and subscribe to us to stay connected. Cheers :)

  • @iliyasn2760
    @iliyasn2760 5 лет назад

    Hey, can you please give the dataset??

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Iliyas, could you share your email ID so that we can send the dataset promptly? Cheers!

  • @santoshtmp7
    @santoshtmp7 4 года назад

    hi. simplilearn
    can u send me datasets and the code of this video??

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hello Santosh, thanks for viewing our tutorial and we hope it is helpful. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly.

    • @santoshtmp7
      @santoshtmp7 4 года назад

      @@SimplilearnOfficial email :: santoshtmp7@gmail.com

  • @noahsealy5559
    @noahsealy5559 4 года назад

    Hi - awesome lecture, thanks! I was wondering if you could email me the data set and Jupyter files for this project, I'd love to test it out myself. Thanks!

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад +1

      Hello Noah, thanks for viewing our tutorial and we hope it is helpful. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly.

    • @noahsealy5559
      @noahsealy5559 4 года назад

      @@SimplilearnOfficial "noah.sealy@dal.ca" (quotations not included in email), thanks!

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hi, thanks for watching our video. We have sent the requested dataset to your mail ID. Do show your love by subscribing to our channel using this link: ruclips.net/user/Simplilearn and don't forget to hit the like button as well. Cheers!

  • @emilianoalquicira504
    @emilianoalquicira504 4 года назад

    Thanks, great video, I would like to understand in deep the CNN.
    Do you belive is posible to share the source and the data set?
    With the source code for sure I could debug and then go line by line to understand the details, for sure the video introduce to me in the best way, however I would like to go more deeper.
    BR,
    Saul Alquicira

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hello Saul, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

    • @emilianoalquicira504
      @emilianoalquicira504 4 года назад

      @@SimplilearnOfficial my email is emilianato19@gmail.com
      thanks

  • @chaitu2416
    @chaitu2416 5 лет назад

    Such a great lecture but am i the only one who have problems with audio idk I don't mean to hurt the person who's explaining but may be something wrong with equipment the voice is kind of not going well with my ears

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi, thank you for watching our video and for the honest feedback. We will definitely look into this. Do subscribe, like and share to stay connected with us. Cheers :)

  • @risnahasanah4726
    @risnahasanah4726 5 лет назад

    may I get the dataset and source code?

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Risna, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

    • @risnahasanah4726
      @risnahasanah4726 5 лет назад

      @@SimplilearnOfficial risnahasanah456@gmail.com

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Risna, thanks for sharing your email ID. We have forwarded the requested dataset to your mail ID. Do show your love by subscribing our channel using this link: ruclips.net/user/Simplilearn and don't forget to hit the like button as well. Cheers!

  • @aouahab345
    @aouahab345 5 лет назад

    very good

  • @renukadevi1000
    @renukadevi1000 4 года назад +1

    Hello Sir, Best explanation of CNN concepts. I'm doing my research in CNN expression recognition. It would be a great help if you send me the object detection code using CNN in Matlab. I am using real time videos as input to my classifier.

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад +1

      WooHoo! We are so happy you love our videos. Please do keep checking back in. We put up new videos every week on all your favorite topics. All the best for your research and please share your email ID to get the dataset. Cheers!

  • @Kishi1969
    @Kishi1969 6 лет назад

    Thanks for your exciting lectures, but in your code in Jupyter notebook, you just from 1- to 8 but the 1-7 is most important aspect to majority of of who are new in the feed, but all the same thanks, we would figure it out how to recap the 1-7 but we can from slide

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Hi Benya, thanks for checking out our tutorial and for sharing the information. Do subscribe to our channel by clicking this link ruclips.net/user/Simplilearn and stay posted for upcoming tutorials. Cheers!

    • @ioraversuleyol4271
      @ioraversuleyol4271 5 лет назад

      @@SimplilearnOfficial Thank you sir. please kindly share the source code to me: wyjoe2@yahoo.co.uk

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hi Suleyol, thanks for watching our video. We have sent the requested source code to your mail ID. Do show your love by subscribing our channel using this link: ruclips.net/user/Simplilearn and don't forget to hit the like button as well. Cheers!

    • @swatim3252
      @swatim3252 4 года назад

      Could you please send me code at hereisswati@gmail.com

  • @EmmanuelBiard
    @EmmanuelBiard 6 лет назад +1

    Great tutorial ! Thanks a lot. That would be great to show how to use the model (make a prediction with an image). And eventually how to save the model for reuse

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад +1

      We are glad you found our video helpful, Emmanuel. Like and share our video with your peers and also do not forget to subscribe to our channel for not missing video updates. We will be coming up with more such videos. Cheers!

  • @ashoknani3379
    @ashoknani3379 5 лет назад

    would be send dis program

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Nani, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @piyushjaininventor
    @piyushjaininventor 6 лет назад +1

    Your voice sounds as if you are talking on phone, kindly consider replacing your microphone

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Hi Piyush, thanks for checking out our tutorial and for sharing the feedback. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!

  • @avinavganti7824
    @avinavganti7824 5 лет назад

    hello sir ..can i have the dataset and source code at my mail....

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      Hello Avinav, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we could send the requested dataset & source code promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that also. Hope that helps.

  • @muhammadsarimmehdi
    @muhammadsarimmehdi 6 лет назад

    I know it's a long shot but can you actually show us how to make a CNN from scratch? I mean, making all the layers and connections by yourself instead of using external libraries and I would really prefer if you did it in C++. I have yet to see anyone try to implement a CNN by themselves using just C++ and not any external libraries like tensorflow etc. It seems as if it is just too difficult even though the theoretical portion makes it look like it can easily be done using an object-oriented approach but no one seems to even try it.

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Hi Sarim, thanks for watching our video and sharing your suggestion. We will definitely look into this and share it with our team. Do subscribe, like and share to stay connected with us. Cheers :)

  • @ahmed_nyc
    @ahmed_nyc 5 лет назад

    The mic sounds like shit. I think you may need to rerecord it.

    • @SimplilearnOfficial
      @SimplilearnOfficial  5 лет назад

      We are sorry about that Ahmed, we will share the feedback with the relevant department.

  • @kerolesmonsef4179
    @kerolesmonsef4179 4 года назад

    actually the accuracy is to bad it is 50% it means that the prediction may running under randomness fool

  • @virus_syam
    @virus_syam 11 месяцев назад +1

    Can you provide the dataset and notebook code to me

  • @gregtorlinski3249
    @gregtorlinski3249 6 лет назад +1

    Great tutorial but I'm still confused about how we determine which matrix filter to use (in the convolution step). Is it randomly initialized then optimized as you train the network? Any chance you could shed some light on that? Additionally if you could email the code/dataset to torlinskig@gmail.com that would be a great help. Cheers!

    • @SimplilearnOfficial
      @SimplilearnOfficial  6 лет назад

      Matrix filter is not applied randomly. In the convolution layer, max pool filter is applied to extract the maximum pixel value from a given input image.
      Please send the code and the dataset to the mentioned email id: kennet.rajan@simplilearn.net.

  • @gulhasan4528
    @gulhasan4528 Год назад

    😮. 😮

  • @Shruthid08
    @Shruthid08 4 года назад

    Thank you for this amazing lecture!!! Could you please mail me the notes of CNN @simplilearn

    • @SimplilearnOfficial
      @SimplilearnOfficial  4 года назад

      Hello Shruthi, thanks for viewing our tutorial and we hope it is helpful. It would be helpful if you will provide your email ID to us so that we could send the requested dataset promptly.

  • @layacheadeth142
    @layacheadeth142 3 года назад +1

    Great tutorial, thank you very much! Could you please send me the code and dataset for it? I'd greatly appreciate it.

    • @SimplilearnOfficial
      @SimplilearnOfficial  3 года назад

      Hello, thanks for viewing our tutorial. It would be helpful if you will provide your email ID to us so that we can send the requested dataset promptly. On the off chance that you need your email ID to be kept hidden from others, we can do that too. Hope that helps.