-
### pycaret version checks
- [X] I have checked that this issue has not already been reported [here](https://github.com/pycaret/pycaret/issues).
- [X] I have confirmed this bug exists on the [latest…
-
"Original"
``` python
def smote(data,num,k=5):
corpus=[]
nbrs = NearestNeighbors(n_neighbors=k+1, algorithm='ball_tree').fit(data)
distances, indices = nbrs.kneighbors(data)
for i in …
-
#### Describe the issue linked to the documentation
There is some discussion going on about the usefulness of some (if not all) over / under sampling methods implemented in the imbalanced learn pac…
-
-
Along the lines of the practical {recipes} advice and the [Ordering of Steps](https://recipes.tidymodels.org/articles/Ordering.html) page, it'd be great to see something similar / expanded that'd be i…
-
It seems that the url being returned by `callsites()[1].getFileName()` in `blog.tsx:109` doesn't include the 'file://', and is preventing `fromFileUrl` from parsing it correctly...
```
deno task s…
-
When trying to train a model using the following command:
python main.py --dataname adult --method smote --mode train
I encountered the following error:
Module baselines.smote.main not found.
…
-
http://sci2s.ugr.es/keel/pdf/specific/congreso/pelayo2007.pdf
-
Hi!
I am reading through the various augmentation examples.
How would you suggest approaching a problem where you may have a small class in a classification task?
I have used SMOTE with some …
-