-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
114 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
Package: fastknn | ||
Version: 0.1.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. The last one gives more calibrated probabilities in general, and reduces log-loss. | ||
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. The last one gives more calibrated probabilities in general, | ||
and reduces log-loss. | ||
Authors@R: person("David", "Pinto", , "[email protected]", c("aut", "cre")) | ||
Depends: | ||
R (>= 3.3.1), | ||
R (>= 3.3.1), | ||
ggplot2 (>= 2.1.0) | ||
Imports: | ||
RANN (>= 2.5), | ||
|
@@ -20,3 +26,4 @@ License: GPL-2 | |
URL: https://github.com/davpinto/fastknn | ||
BugReports: https://github.com/davpinto/fastknn/issues | ||
LazyData: true | ||
RoxygenNote: 5.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ export("%>%") | |
export(fastknn) | ||
export(fastknnCV) | ||
export(knnDecision) | ||
import(ggplot2) | ||
importFrom(magrittr,"%>%") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#' @import ggplot2 | ||
|
||
#' @importFrom magrittr %>% | ||
#' @export | ||
magrittr::`%>%` | ||
magrittr::`%>%` |
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.