-
Notifications
You must be signed in to change notification settings - Fork 2
/
DESCRIPTION
26 lines (26 loc) · 1.13 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
Package: scutr
Title: Balancing Multiclass Datasets for Classification Tasks
Version: 0.2.0
Authors@R:
person(given = "Keenan",
family = "Ganz",
role = c("aut", "cre"),
email = "[email protected]")
Maintainer: Keenan Ganz <[email protected]>
Description: Imbalanced training datasets impede many popular classifiers. To balance training data, a combination of oversampling minority classes and undersampling majority classes is useful. This package implements the SCUT (SMOTE and Cluster-based Undersampling Technique) algorithm as described in Agrawal et. al. (2015) <doi:10.5220/0005595502260234>. Their paper uses model-based clustering and synthetic oversampling to balance multiclass training datasets, although other resampling methods are provided in this package.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Imports:
smotefamily,
parallel,
mclust
Depends:
R (>= 2.10)
URL: https://github.com/s-kganz/scutr
BugReports: https://github.com/s-kganz/scutr/issues
Suggests:
testthat (>= 2.0.0)
Config/testthat/edition: 2