imbalanced-learn icon indicating copy to clipboard operation
imbalanced-learn copied to clipboard

A Python Package to Tackle the Curse of Imbalanced Datasets in Machine Learning

Results 105 imbalanced-learn issues
Sort by recently updated
recently updated
newest added
trafficstars

#### Reference Issue #### What does this implement/fix? Explain your changes. #### Any other comments?

#### Describe the bug When using SVMSMOTE on dataset which contains a minority class which has very few samples (may be < 10), it'll raise error `ValueError: Found array with...

Some scikit-learn estimators rely on the sample_weight but the current Sampler do not accept it. We should be able to at least sample the sample_weight as well. However, it should...

#### Is your feature request related to a problem? Please describe Most of the time the data that needs to be resampled consists of Nominal and Continuous data. So SMOTENC...

This PR does: - deprecate `estimator_` in favour of `n_neighbors_` - accept any arbitrary knn classifier that has a `n_neighbors` parameter

#### Reference Issue Fixes #881 #### What does this implement/fix? Explain your changes. Implements the Geometric SMOTE, as described in [Geometric SMOTE a geometrically enhanced drop-in replacement for SMOTE](https://www.sciencedirect.com/science/article/pii/S0020025519305353) by...

I'm opening this issue to discuss the possible inclusion of Geometric-SMOTE, proposed by Douzas and Bacao [in this paper](https://www.sciencedirect.com/science/article/pii/S0020025519305353), in the imbalanced-learn library. The oversampler was already implemented by Georgios...

Reference issue #772 #### What does this implement/fix? Explain your changes. To add the sample indices of the generating samples that do not belong to the original dataset. * `sample_indices()`...

POC to see if we can make at least the `RandomUnderSampler` and `RandomOverSampler` accept some dask array and dataframe Note: - https://github.com/dask/dask-ml/issues/317 - #701