Image Augmentation for Deep Learning | Benefits, Techniques & Best Practices

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

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

  • @adataodyssey
    @adataodyssey  9 месяцев назад

    *NOTE*: You will now get the XAI course for free if you sign up (not the SHAP course)
    SHAP course: adataodyssey.com/courses/shap-with-python/
    XAI course: adataodyssey.com/courses/xai-with-python/
    Newsletter signup: mailchi.mp/40909011987b/signup

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

    Excellent video! I will be recommending this friends in the future when they want to know about data augmentation.

  • @hewramanwaran6444
    @hewramanwaran6444 11 месяцев назад

    Hi. Thanks for your video. I have a question. When the augmentation methods has to be realistic depending to the use case, why they cannot be applied before spliting? Thank you.

    • @adataodyssey
      @adataodyssey  10 месяцев назад +2

      If you augment an image, it may look very similar to the original image. For example, by only slightly adjusting the brightness or flipping the image.
      So, after many augmentations, you can have many copies of similar images in you dataset. If you train on some of these images, it is likely that the model will be able to predict the others correctly. So, if you include some augmented images, from the *same* image, in both the training and test set then you can over exaggerate your models accuracy.
      Alternatively, you could split the images into the training\test set and then augment them. This way you will not have similar images in the two sets. It is still best practise to also get the accuracy on the test set that is not augmented.
      I hope that makes sense :)

    • @hewramanwaran6444
      @hewramanwaran6444 10 месяцев назад

      @@adataodyssey Thanks a lot for you reply. Yes. It does.