Git Product home page Git Product logo

smote_variants's People

Contributors

gykovacs avatar

Stargazers

 avatar

Watchers

 avatar  avatar

smote_variants's Issues

Proportion parameter

For each proportion setting, I still have the same number of objects. To me, the package seems to balance the dataset as if proportion = 1, regardless of which value I assign to proportion.

The code is given below.

from sklearn import datasets
import smote_variants as sv
from imblearn.datasets import make_imbalance

resample for proportion = 0.5

oversampler1= sv.MulticlassOversampling(sv.SMOTE_Cosine(proportion=0.5,random_state=42))

resample for proportion = 3

oversampler2= sv.MulticlassOversampling(sv.SMOTE_Cosine(proportion=3,random_state=42))
#resample for proportion = 1
oversampler3= sv.MulticlassOversampling(sv.SMOTE_Cosine(proportion=1,random_state=42))

iris dataset

iris = datasets.load_iris()
X = iris.data
y = iris.target

#make iris dataset imbalanced
X,y = make_imbalance(X, y,
sampling_strategy={0: 5, 1: 20, 2: 50},
random_state=42)

X1, y1 = oversampler1.sample(X, y)

X2, y2 = oversampler2.sample(X, y)

X3, y3 = oversampler3.sample(X, y)

#check the number of samples
print(len(X1))

print(len(X2))

print(len(X3))

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.