Feature Selection in Python | Machine Learning Basics | Boston Housing Data

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ธ.ค. 2024

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

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

    This really is an informative video! Thanks for the concise tutorial on feature selection.

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

    I skipped this video when it was posted because I wasn't really doing anything related to machine learning, but lately I've been looking more into math modeling and linear regression to find ways it can support my experimental research. Excellent tutorial and I'm excited to try to implement some of these things into my own data sets! Still on the data collection & cleaning phase but making progress :)

    • @PhDandProductivity
      @PhDandProductivity  3 ปีที่แล้ว

      That's great! It's seeming like more and more no matter what science (or even subject generally) you're involved with machine learning techniques will creep in!

  • @chantis1794
    @chantis1794 4 ปีที่แล้ว +5

    Thanks for this video. It is very helpful to me especially for filtering the most important features.

  • @narothamreddy9310
    @narothamreddy9310 2 ปีที่แล้ว +4

    I have a question should we remove outliers from data before feature selection process or not?

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

    best video I have ever come across

  • @mengshuangfu8206
    @mengshuangfu8206 4 ปีที่แล้ว +6

    Thanks for the detailed explanation! I have some questions, I'm running a unsupervised learning study. what if I have 200+ features, and most of them don't seem to have correlation with each other, how do I reduce features? And what's the best way to determine how many clusters I should choose?

    • @adeshinajohn3988
      @adeshinajohn3988 2 ปีที่แล้ว

      Hi, Fu. Im sure you would have solved your challenge. can you state what you did? thanks

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

    We could look into data transformations as a way to enhance the model right…. I mean applying the right transformations to each column, we have the potential to maximize their effectiveness right??

  • @manishbolbanda9872
    @manishbolbanda9872 4 ปีที่แล้ว +2

    EDA ,Feature Engg and Feature selection are these things irrespective of Machine learning Algo to be used??
    any answer would be appreciated. Thanks.

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

      manish bolbanda it can depends which procedure you use because different features will work better in different learning algorithms. So often wrapper feature selection is preferred over filtering when you are using a particular algorithm.

  • @iqamat-e-deen-1
    @iqamat-e-deen-1 4 ปีที่แล้ว +1

    Great Insights, and now I have SUBSCRIBED, and can't wait to see more from you. Huge Thank You!!!

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

      Thanks for subscribing Muhammad. Abs for your comment 😊

  • @rafidhaque2722
    @rafidhaque2722 2 ปีที่แล้ว

    thank you so much for providing the python scripts...your video was very helpful for me

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

    Thanks very much for this informative post

  • @saeedhassiny7454
    @saeedhassiny7454 4 ปีที่แล้ว

    please how i can doing feature selection on 1D feature vector that represent the features extracted from image

  • @abhinavvivek3259
    @abhinavvivek3259 3 ปีที่แล้ว +2

    I really appreciate this tutorial. Its really very helpful. However, I do have one quick question. Why haven't you use the train_test_split function to split the dataset to predict Y on the test dataset?

    • @PhDandProductivity
      @PhDandProductivity  3 ปีที่แล้ว +4

      Thanks! Because I used cross validation instead which splits into training and test several times then averages the error over the runs.

  • @m.randayandika3779
    @m.randayandika3779 3 ปีที่แล้ว

    Thanks for the video! Its. really good. But i have problem with you code in wrapper section because i have different dataset. Can you help me to solve my problem?
    Thanks a lot

  • @xiaodongyang4841
    @xiaodongyang4841 2 ปีที่แล้ว

    Hi, your video is beneficial for my study. But I have a problem. Do your methods apply to financial data analysis? For instance, financial market predictions.

  • @voshark7586
    @voshark7586 2 ปีที่แล้ว

    Sorry . Can you tell me the roles of Feature Selection, please???
    Thank you so much.

  • @finnzhang1323
    @finnzhang1323 4 ปีที่แล้ว

    what should we use instead of R_squared in classification problems

  • @da_ta
    @da_ta 3 ปีที่แล้ว

    Apart low sound great explanation and clear steps thank you for doing this!

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

    Thanks for this video...I hv several doubts..
    1.Shouldn't we exclude features based on their correlation with other features and not the dependent variable??
    2.I am working on a similar housing dataset with 61 features...so will this forward and backward wrapper methods work? How will i find the best combination of features to select as u did here as the dataset has less no. of features.
    3.Could u pls explain that pipeline code line with StandardScalar() and Kneighbors....is it automatically standardizing the numerical features and then implementing KNN?
    4. My dataset has many categorical variables and after getting dummy variables, no. of features have gone up. So, how do I select using forward or backward selection as selecting levels of categories will not make any sense...so how do I select important categorical features?
    Your reply is highly appreciated :)

    • @PhDandProductivity
      @PhDandProductivity  4 ปีที่แล้ว +3

      Hi Akash, sorry for the delay.
      1. So the point of removing variables that have low correlation with the dependent variable is that they are variables that do not predict the dependent variable and so won't be useful to the model. The risk of only looking at correlation with other variables is that you could remove a potentially useful variable because of its correlation with a useless variable.
      2. It works the same with larger number of features.
      3. The pipeline uses cross validation with a StandardScaler so first it will divide the data into 5 splits of training and test data, train a scaler on the training data and apply to the test data, then train the Knn to the training data and test on the test data.
      4. I would recommend with categorical features, if some feature levels are not useful then group some together e.g. levels 1-3, 4, 5-9
      hope that helps.

    • @akashprabhakar6353
      @akashprabhakar6353 4 ปีที่แล้ว

      @@PhDandProductivity thank you very much for this detailed reply

    • @tommy626
      @tommy626 4 ปีที่แล้ว

      @@PhDandProductivity thanks for your video and reply! just a quick follow-up on this question, so for those variables that have low correlation with the dependent variable, conclusion is keep or remove them? thx!

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

    Loved it. Thanks

  • @siddharthchauhan8285
    @siddharthchauhan8285 3 ปีที่แล้ว

    will it be helpful to join this community for someone who is new / beginner to machine learning ?

  • @pranavipatel9259
    @pranavipatel9259 3 ปีที่แล้ว

    try to put codes in the webpage and put the link of it in discriptions

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

    Can we select features based on gain ratio or information gain? Like a tree based approach

  • @info-dawg
    @info-dawg 3 ปีที่แล้ว +1

    Amazing! Thanks

  • @bouabdellahtahar5126
    @bouabdellahtahar5126 3 ปีที่แล้ว

    how to select features using swarm in python

  • @markgoh8302
    @markgoh8302 3 ปีที่แล้ว

    Thanks for the tutorial. I am starting out in ML. I have a question. I notice in the video you used r2 to score your feature selection. When are you concerned about in the process that you over fitted the model?

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

    thank you so much😍 pleaseee make more machine learning videos

  • @data_first
    @data_first 2 ปีที่แล้ว

    This video is great!

  • @muhammadjamalahmed8664
    @muhammadjamalahmed8664 4 ปีที่แล้ว +2

    Really helpful.. Thank you..

  • @hussainsalih3520
    @hussainsalih3520 2 ปีที่แล้ว

    amazing keep it up

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

    Thanks a lot for this

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

    Well Explained

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

    Really helpful, Thanks!

  • @akshitmiglani5419
    @akshitmiglani5419 3 ปีที่แล้ว

    Hi there,
    Thank you for sharing your knowledge. I have a question:
    When we check the correlation, should we not check it only with continuous variables? I'm not sure what "correlation" tells us with categorical variables.
    Doubt(in a broad sense) : Should we not first check if our variables are continuous/categorical and then choose the methods?
    For example : t-test/correlation for continuous and chi-sq test for categorical variables after doing label encoding.
    This has always bothered me. Looking forward to find out where the gap in my understanding is. Thank you!

  • @dashsingh30095
    @dashsingh30095 3 ปีที่แล้ว

    Doing great job

  • @uzhankocaman7457
    @uzhankocaman7457 4 ปีที่แล้ว

    very informative. thanks!

  • @chanellioos
    @chanellioos 2 ปีที่แล้ว

    This 🔥 Kira

  • @andisupriadichan5188
    @andisupriadichan5188 4 ปีที่แล้ว

    Hi kira ,thank you for your video, i' chan ,but can i ask some question about u research phd, i'm still little bit confusing about novelty in phd research, i'm concern in data mining and ML. can u tell me or make a video about this ?

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

      Andi Supriadi Chan hi thanks for commenting. I’m not really sure what you are asking.

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

    Thank you for this videos :)

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

      Riccardo Secci glad you like it!

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

      @@PhDandProductivity I am soon to be PhD student in a field similar to yours (Bioinformatics) 😊 so I'm trying to deepen my understanding of Machine learning! Your videos are very clear and explanatory

  • @simon-4530
    @simon-4530 4 ปีที่แล้ว +1

    Great video 😊 thanks

  • @ajaysingh001
    @ajaysingh001 4 ปีที่แล้ว +2

    thanks its really nice

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

    Really nice video. Loved it. Can you make videos on implementing Kernels and Gaussian Processes in python?
    Thanks in advance

    • @PhDandProductivity
      @PhDandProductivity  4 ปีที่แล้ว +2

      Shubham Shakya unfortunately that’s not something that I’m knowledgable about.

    • @hiruki8
      @hiruki8 2 ปีที่แล้ว

      @@PhDandProductivity is it something you've since become more knowledgable about? 👀

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

    you're awesome tank u

  • @harshithbangera7905
    @harshithbangera7905 4 ปีที่แล้ว +2

    Thanks 👍...

  • @XX-vu5jo
    @XX-vu5jo 4 ปีที่แล้ว

    PhD but doing basic stuff lol

    • @cgmiguel
      @cgmiguel 4 ปีที่แล้ว +9

      That’s why she’s teaching. These are not PhD related.