Professional Preprocessing with Pipelines in Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ก.ย. 2024
  • In this video, we learn about preprocessing pipelines and how to professionally prepare data for machine learning.
    ◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾
    📚 Programming Books & Merch 📚
    🐍 The Python Bible Book: www.neuralnine...
    💻 The Algorithm Bible Book: www.neuralnine...
    👕 Programming Merch: www.neuralnine...
    🌐 Social Media & Contact 🌐
    📱 Website: www.neuralnine...
    📷 Instagram: / neuralnine
    🐦 Twitter: / neuralnine
    🤵 LinkedIn: / neuralnine
    📁 GitHub: github.com/Neu...
    🎙 Discord: / discord
    🎵 Outro Music From: www.bensound.com/

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

  • @vzinko
    @vzinko 10 หลายเดือนก่อน +17

    Rather than creating a class for each step, another much easier approach is to make use of sklearn's FunctionTransformer. This basically allows you to write a custom function and turn it into a transformer object, which can then be fed through a pipeline as per normal

    • @HamzaShahid-s8t
      @HamzaShahid-s8t 14 วันที่ผ่านมา +1

      Yeah Sklearn Transrfoermersa are good but creating a Class gives you the upper Hand of fitting on the data like learn from the data
      Advantages of Custom Transformer Classes
      Stateful Transformations: Custom transformers can maintain state (e.g., learned parameters) through the fit and transform methods. This is particularly useful for transformations that require learning from the data, such as scaling or encoding based on the training data.
      Integration with Pipelines: Custom transformers can seamlessly integrate into scikit-learn pipelines, allowing you to leverage all the benefits of pipelines, including cross-validation and hyperparameter tuning.
      More Control: Creating a class allows for more complex logic and functionality, such as handling edge cases, logging, and error handling.
      Reusability: Once defined, a custom transformer can be reused across different projects or datasets without modification.

    • @twentytwentyeight
      @twentytwentyeight 4 วันที่ผ่านมา

      @@HamzaShahid-s8t great breakdown of when and why to use custom transformers

  • @onecarry1532
    @onecarry1532 2 ปีที่แล้ว +7

    Hey man, great channel! Love the topic based tutorials ❤️
    Video Suggestion: Can I suggest you attempt making a video on: Using Python and the Tree Algorithm to make an autocomplete Python CLI program.
    Haven’t seen this anywhere and I guess it’s a great way to understand why the Tree algorithm might be the best solution for an autocomplete program.
    Thanks! Sure we all appreciate what you do for the community ♥️ 🌻

  • @randomfinn404
    @randomfinn404 2 ปีที่แล้ว +21

    For those who noticed that the encoder seems to sort the values alphabetically and messes up the job column names, instead of manually typing column names you can do:
    matrix = encoder.fit_transform(X[['Job']]).toarray()
    column_names = sorted([i for i in df['Job'].unique()])
    This will also work if there are more /new jobs and values added and makes a column for each unique value while keeping the order.
    Good tutorial in any case!

    • @jacksummers3918
      @jacksummers3918 2 ปีที่แล้ว +7

      Use
      pd.get_dummies(X.Job, prefix="Job")
      Much neater

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

      G.... Thank You... I was hoping to that some one noticed it...
      I'm glad that I got the Better version ❤

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

    I have a big one question: What is the difference of build a Machine Learning application with Pipeline and to build a machine learning application with a OOP technique? I see that it is the same.

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

      Yeah, this is a great video but that's something I'm curious about as well.

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

    Nice. For this example I might use the ColumnTransformer class, its perfect for dropping columns and integrating imputers and scalers on select features.

  • @isaacandrewdixon
    @isaacandrewdixon 2 ปีที่แล้ว +5

    This was awesome and very informative. Many thanks from a machine learning novice!

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

    I find using FunctionTransformer much easier. It turns each of your custom functions into a transformer and you don't need to write a class, but just a function.

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

    Could you use the get_dummies pandas method for the One Hot Encoding?

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

    16:42 I think it's wrong to use fit_transform in transform method, because it will cause to memory leakage, after you divide data into two parts train/test - where transform on the test dataset will recalculate imputer.

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

    I remember when I took courses from udemy in ML and took more time from this video, keeps to continue creating more videos from the same subject.

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

    Fantastic video, always wondered the reasoning behind using classes in ml, thank you!!!

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

    This video is pure gold. Thank you so much!

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

    I think your feature encoder has some faulty logic for the "Job" column. The df2 for example shows 1 x writer, 3 x programmer and 1 x teacher, but afterwards there isn't even a "teacher" column. And if you were to recreate the single columns using 1 or 0 from the features you created you wouldn't get the same dataframe.

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

    Thank you so much nicely explained
    with what you showed i created pipeline and dumped it as pikle file but when i tryinng to load that model and using it. i have been facing an error : AttributeError: Can't get attribute 'NullEncoder' on

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

    I would really like to find a tutorial on how to pass arguments to an pipeline function you created yourself, like the namedropper. So i can use the gridsearch to try out dropping different features.

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

    bro great video!!

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

    With an eye towards the love that programming has gotten from the ml community lately, it occurs to me that perhaps ml could also be used more in the data preprocessing role.
    For example: Choosing encoding types, handling missing values, flattening, etc could all be automated.
    Just a thought.
    2nd random thought. I know random noise has been added to features in an attempt to get the models to generalize better but did not fare well.
    However I have not seen that anyone has tried simply using noise generators (normal, gaussian, etc) as individual features and allowing the model itself to choose when and where noise might be effective.

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

    where do you work #admin

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

    What is the opening song of this videos name?

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

    Thank you, this was informative 😁

  • @InfiniteLearningLab
    @InfiniteLearningLab 26 วันที่ผ่านมา

    nice

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

    wow this technique is amazing. thanks for sharing us with brilliant knowledge

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

    really useful, thank you very much

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

    Thank you. This is very helpful.

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

    That was really helpful, thanks!

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

    Are you swedish? 😮

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

    Thank you, sir!

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

    Sick video bro! 😎

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

    Very usefull! Thx!

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

    Thank you!

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

    Great!

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

    Thanks Sir

  • @bellabella-tv8zg
    @bellabella-tv8zg 2 ปีที่แล้ว

    1st

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

    Awesome