From 4f74d24711cfaf6ff8f26f3e4a368416e111bc3d Mon Sep 17 00:00:00 2001 From: Vivek Kumar Date: Tue, 7 Feb 2017 11:48:16 +0530 Subject: [PATCH] Changed n_neighbours to n_neighbors Changed n_neighbours to n_neighbors in Parameters description --- imblearn/over_sampling/adasyn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imblearn/over_sampling/adasyn.py b/imblearn/over_sampling/adasyn.py index 72f62dfd5..759d6a070 100644 --- a/imblearn/over_sampling/adasyn.py +++ b/imblearn/over_sampling/adasyn.py @@ -37,7 +37,7 @@ class ADASYN(BaseBinarySampler): NOTE: `k` is deprecated from 0.2 and will be replaced in 0.4 Use ``n_neighbors`` instead. - n_neighbours : int int or object, optional (default=5) + n_neighbors : int int or object, optional (default=5) If int, number of nearest neighbours to used to construct synthetic samples. If object, an estimator that inherits from