-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDESCRIPTION
40 lines (40 loc) · 1.49 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Package: fastknn
Version: 0.9.0
Title: Build Fast k-Nearest Neighbor Classifiers
Description: A fast KNN learner for binary and multinomial classification
problems, build upon the ANN library. It has been developed to deal with very
large datasets (> 100k rows). The 'fastknn' makes it easy to find the best 'k'
and to plot beautiful decision boundaries for the classifiers. Moreover, it
provides estimators for the class membership probabilities based on voting and
weighted voting rules. The last one gives more calibrated probabilities in general,
and reduces log-loss. If you want to combine KNN with other classifiers,
'fastknn' provides a feature extraction method that makes a nonlinear mapping
from the original features using KNN. Then the new features can be used to
improve the performance of any other classifier of your choice.
Authors@R: person("David", "Pinto", email = "[email protected]", role = c("aut", "cre"))
Depends:
R (>= 3.3.1)
Imports:
RANN (>= 2.5),
ggplot2 (>= 2.1.0),
viridis (>= 0.3.4),
pbapply (>= 1.1-1),
matrixStats (>= 0.14.0),
Metrics (>= 0.1.1),
foreach (>= 1.4.3),
doSNOW (>= 1.0.14)
Suggests:
mlbench (>= 2.1-1),
caTools (>= 1.17.1),
glmnet (>= 2.0-5),
gridExtra (>= 2.2.1),
pander,
testthat,
knitr,
rmarkdown
License: GPL-2
URL: https://github.com/davpinto/fastknn
BugReports: https://github.com/davpinto/fastknn/issues
LazyData: true
RoxygenNote: 5.0.1
VignetteBuilder: knitr