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 85 imbalanced-learn issues
Sort by recently updated
recently updated
newest added

Following up on https://github.com/scikit-learn-contrib/imbalanced-learn/issues/991 - in addition to updates to the documentation, it would be beneficial for users to see example usage of imbalanced-learn with scikit-learn-intelex imbalanced-learn to demonstrate usage...

Hello everyone, I used this library and it worked very well. Due to some conflicts in conda, I had to remake an environment. I reinstalled imbalanced-learn==0.10 but i am facing...

In the docs, it's frequently mentioned in the references > Supports multi-class resampling. A one-vs.-rest scheme is used when sampling a class as proposed in [1]. So far, every time...

#### Describe the bug SMOTENC fit_transform fails with Numpy error `ValueError: zero-size array to reduction operation maximum which has no identity` when getting to this line: https://github.com/scikit-learn-contrib/imbalanced-learn/blob/27bb6c7b0fab2dd0941ed56d2895478776c74f95/imblearn/over_sampling/_smote/base.py#L790 #### Steps/Code to...

I am trying to implement a custom transformer for multilabel SMOTE in my pipeline. However, I constantly run into: "All intermediate steps of the chain should be estimators that implement...

I was trying to implement ROSE (Random Oversampling Examples) in Julia, and after considering the paper I decided to look at imbalanced-learn's implementation. There seems to be a `shrinkage` parameter...

Reword documentation and docstrings for the NCR. Related to #854

related to #853 Separating in smaller PRs as requested. I had some trouble understanding the documentation for this class, so I hope that when I re-worded it, I captured the...

Hi, in the paper about near miss (https://www.site.uottawa.ca/~nat/Workshop2003/jzhang.pdf), a 4th variation is described, called "distant". The documentation of near miss 3, reads as if the original near miss 3 variation...

#### Describe the bug I received this error message when attempting to run an established workflow that is dependent on creating a pipeline, applying SMOTE, and then using GridSearchCV to...