Smote with Python

Sdílet
Vložit
  • čas přidán 3. 07. 2024
  • - What is the class imbalance problem
    - Examples of Class Imbalance
    - Context of SMOTE
    - SMOTE Application with a sample dataset
    - SMOTE Parameters
    - Other Algorithms
    Other Materials
    Notebook: www.kaggle.com/saptarsi/smote...
    Article: towardsdatascience.com/class-...
    video: • How to use SMOTE, Bord...
    #SMOTE, #SMOTEUsingPython

Komentáře • 19

  • @vijaykumar-od7kx
    @vijaykumar-od7kx Před měsícem

    thanks saptarsi, this video hepled me to understand the SMOTE much better. thanks again

  • @subhasreebose8178
    @subhasreebose8178 Před 3 lety +5

    I am not in much touch with data science these days but still could understand this video clearly. Very nicely explained

  • @Theroadrunner2002
    @Theroadrunner2002 Před 3 lety +1

    I have recently applied this for a project of risk prediction in construction sector. Nice one👍🏻

    • @SaptarsiGoswami
      @SaptarsiGoswami  Před 3 lety +2

      SMOTE also has some issues, will try to come up with a video on other algorithms too.

  • @iheleanbeefpatty
    @iheleanbeefpatty Před 2 lety

    Thank you for this video sir.

  • @malihehheydarpour104
    @malihehheydarpour104 Před 7 měsíci

    Thanks for your video. could you please help me to find the next video of that which you discussed about different methods of smote?

  • @hsumin3302
    @hsumin3302 Před rokem +1

    Thank you for sharing this video. I have learned much from it.

  • @user-cu6dq2qe6w
    @user-cu6dq2qe6w Před rokem

    Hello sir, how can I do it if I want to solve a problem with three categories with the smote algorithm

  • @wazibansar1683
    @wazibansar1683 Před 3 lety +1

    Very informative video Sir.

  • @priyamilton1173
    @priyamilton1173 Před 2 lety

    Sir.. Can u please explain how to apply SMOTE for streaming data

  • @KaushikJasced
    @KaushikJasced Před 2 lety +1

    Thank you sir for giving a wonderful lecture. Can you tell me how I can put the sampling ratio as per my choice instead of 1:1 using SMOTE?

    • @SaptarsiGoswami
      @SaptarsiGoswami  Před 2 lety +1

      Please go through the parameters class imblearn.over_sampling.SMOTE(*, sampling_strategy='auto', random_state=None, k_neighbors=5, n_jobs=None). the sampling strategy parameter will give you the handle.

  • @sayantanighosh3930
    @sayantanighosh3930 Před 3 lety

    Sir very clearly explained

  • @kurniawandk5078
    @kurniawandk5078 Před 2 lety

    sir, i have question about how to set n sample of the smote, in example i want to set 200% of n_sample smote, i didnt find how to set that

    • @SaptarsiGoswami
      @SaptarsiGoswami  Před 2 lety

      class imblearn.over_sampling.SMOTE(*, sampling_strategy='auto', random_state=None, k_neighbors=5, n_jobs=None), you can use the sampling strategy parameter.