Feature selection in machine learning | Full course

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ก.ค. 2024
  • Full source code on GitHub: github.com/marcopeix/youtube_...
    Introduction - 0:00
    Initial code setup - 2:19
    Variance threshold - 11:04
    Variance threshold (code) - 13:02
    Filter method - 19:39
    Filter method (code) - 21:27
    RFE - 29:08
    RFE (code) - 30:42
    Boruta - 37:12
    Boruta (code) - 41:21
    Thank you - 46:35
    A full course on feature selection in machine learning projects.
    We first cover a naive method based on variance. Then we move on to filter method and wrapper method like recursive feature elimination or RFE. Finally, implement the Boruta algorithm.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 42

  • @lecturesfromleeds614
    @lecturesfromleeds614 6 วันที่ผ่านมา

    Marco's the man!

  • @mandefrolegesse5748
    @mandefrolegesse5748 12 วันที่ผ่านมา

    Very interesting explanation and clear to understand. I was looking for this kind of tutorial. Subscribed👍

  • @tanyaalexander1460
    @tanyaalexander1460 2 หลายเดือนก่อน

    I am a noob to data science and feature selection. Yours is the most succinct and clear lesson I have found... Thank you!

  • @abhinavreddy6451
    @abhinavreddy6451 2 หลายเดือนก่อน

    Please do more Data science-related content, It was very helpful I searched everywhere for feature selection videos and finally landed on this video and this was all I needed, the content is awesome and the explanation is as well!

  • @mauroSfigueira
    @mauroSfigueira หลายเดือนก่อน +1

    Hugely informative and educational content. Many feature engineering videos are not that instructive.

  • @samuelliaw951
    @samuelliaw951 7 หลายเดือนก่อน +2

    Really great content! Learnt a lot. Thanks for your hard work!

  • @shwetabhat9981
    @shwetabhat9981 ปีที่แล้ว

    Woah , much awaited 🎉 . Thanks for all the efforts put in sir . Looking forward to more such amazing content 🙂

  • @babakheydari9689
    @babakheydari9689 หลายเดือนก่อน

    It was great! Thanks for sharing your knowledge. Hope to see more of you.

  • @claumynbega1670
    @claumynbega1670 7 หลายเดือนก่อน

    Thanks for this valuable work. Helps me learning the subject.

  • @michaelmecham6145
    @michaelmecham6145 3 หลายเดือนก่อน

    Sensational video, thank you so much!

  • @ax5344
    @ax5344 20 วันที่ผ่านมา

    I like the logic of this video. You showed the baseline, then three additional methods, then compare them in the end. Thanks a lot for sharing the technique. The feature/target matrix is also very helpful.
    My question is the principle or concept behind the filter method, RFE, and boruta. Is it possible to do a video on them?

  • @Loicmartins
    @Loicmartins 7 หลายเดือนก่อน

    Thank you very much for your work!

  • @maythamsaeed533
    @maythamsaeed533 7 หลายเดือนก่อน

    very helpful video and easy way to explain the content. thanks alot

  • @oluwasegunodunlami7360
    @oluwasegunodunlami7360 7 หลายเดือนก่อน +1

    Wow, this video is really helpful, a lot of interesting methods were shown. Thanks a lot.
    I like to ask you to make a future video covering how you perform feature engineering and model fine tuning 1:49

  • @paramvirsaini2806
    @paramvirsaini2806 8 หลายเดือนก่อน

    Great explanation. Easy hands-on as well!!

  • @tongji1984
    @tongji1984 4 หลายเดือนก่อน

    Dear Marco Thank you.😀

  • @roba_trend
    @roba_trend ปีที่แล้ว

    interesting content much love it🥰

  • @dorukucar7105
    @dorukucar7105 7 หลายเดือนก่อน

    pretty helpful!

  •  ปีที่แล้ว +1

    I am currently reading your book and it's amazing

    • @jmagames2766
      @jmagames2766 8 หลายเดือนก่อน

      what is the name of the book plz

  • @imadsaddik
    @imadsaddik 3 หลายเดือนก่อน

    Thank you for sharing

  • @scott6571
    @scott6571 5 หลายเดือนก่อน

    Thank you! It's helpful!

  • @eladiomendez8226
    @eladiomendez8226 4 หลายเดือนก่อน

    Awesome video

  • @nabeel_kaleel
    @nabeel_kaleel 23 วันที่ผ่านมา

    subscribed

  • @chiragsaraogi363
    @chiragsaraogi363 8 หลายเดือนก่อน +1

    This is an incredibly helpful video. One thing I noticed is that all features are numerical. How do we approach feature selection with a mix of numerical and categorical features? Also, when we have categorical features, do we first convert them to numerical features or first do feature selection. A video on this would be really helpful. Thank you

    • @haleematajoke4794
      @haleematajoke4794 6 หลายเดือนก่อน

      You will need to convert the categorical features into numerical format by using label encoding which automatically converts it to numerical values or custom mapping where u can manually assign ur preferred values to the features. I hope it helps

    • @haleematajoke4794
      @haleematajoke4794 6 หลายเดือนก่อน +1

      You will have to do the conversion before feature selection because machine learning models only learn from numerical data

  • @alfathterry7215
    @alfathterry7215 6 หลายเดือนก่อน

    in Variance threshold technique, if we use Standard scaler instead of Minmax scaler, the variance would be the same for all variables.... does it means we can eliminate this step and just use standars scaler?

  • @mrthwibble
    @mrthwibble 5 หลายเดือนก่อน

    Excellent video, however I'm preoccupied trying to figure out if having wine as a gas would make dinner parties better or worse. 🤔

  • @cagataydemirbas7259
    @cagataydemirbas7259 ปีที่แล้ว +1

    Hi, when I use randomforest , DecisionTree and xgboost on RFE , even if all of them tree based models, they returned completely different orders. On my dataset has 13 columns, on xgboost one of feature importance rank is 1, same feature rank on Decisiontree is 10, an same feautre on Randomforest is 7. How can I trust wich feature is better than others in general purpose ? İf a feature is better predictive than others, shouldnt it be de same rank all tree based models ? I am so confused about this. Also its same on SquentialFeatureSelection

    • @datasciencewithmarco
      @datasciencewithmarco  ปีที่แล้ว

      That's normal! Even though they are tree-based, they are not the same algorithm, so ranking will change. To decide on which is the best feature set, you simply have to predict on a test set and measure the performance to make a decision.

  • @pooraniayswariya997
    @pooraniayswariya997 11 หลายเดือนก่อน

    Can you teach how to do MRMR feature selection in ML?

  • @therevolution8611
    @therevolution8611 ปีที่แล้ว

    can you explain how we are performing feature selection for the multilabel problem?

    • @user-cl3ej5mi7k
      @user-cl3ej5mi7k 5 หลายเดือนก่อน

      You can convert the label to numerical features by replacing them with numbers. If you have 3 labels in a feature, you could represent them with 0,1,2 there are different methods to use. Simpler one is .replace({})

  • @roba_trend
    @roba_trend ปีที่แล้ว +1

    i tried to search under your github aint get the data where is the data you work on?

    • @datasciencewithmarco
      @datasciencewithmarco  ปีที่แล้ว

      The dataset comes from the scikit-learn library! We are not reading a CSV file. As long as you have scikit-learn installed, you can get the same dataset! That's what we do in cell 3 of the notebook and it's also on GitHub!

  • @nikhildoye9671
    @nikhildoye9671 3 หลายเดือนก่อน

    I thought feature selection is done before model training. Am I wrong?