Wolfram Language
Paclet Repository
Community-contributed installable additions to the Wolfram Language
Primary Navigation
Categories
Cloud & Deployment
Core Language & Structure
Data Manipulation & Analysis
Engineering Data & Computation
External Interfaces & Connections
Financial Data & Computation
Geographic Data & Computation
Geometry
Graphs & Networks
Higher Mathematical Computation
Images
Knowledge Representation & Natural Language
Machine Learning
Notebook Documents & Presentation
Scientific and Medical Data & Computation
Social, Cultural & Linguistic Data
Strings & Text
Symbolic & Numeric Computation
System Operation & Setup
Time-Related Computation
User Interface Construction
Visualization & Graphics
Random Paclet
Alphabetical List
Using Paclets
Create a Paclet
Get Started
Download Definition Notebook
Learn More about
Wolfram Language
ClassifierEnsembles
Guides
Ensembles of classifiers
Tech Notes
ROC for classifier ensembles, bootstrapping, damaging, and interpolation
Symbols
ClassifyByThreshold
EnsembleClassifierConfusionMatrix
EnsembleClassifierMeasurements
EnsembleClassifier
EnsembleClassifierProbabilities
EnsembleClassifierROCData
EnsembleClassifierROCPlots
EnsembleClassifierVotes
EnsembleClassifyByThreshold
EnsembleClassify
ResamplingEnsembleClassifier
AntonAntonov`ClassifierEnsembles`
E
n
s
e
m
b
l
e
C
l
a
s
s
i
f
i
e
r
P
r
o
b
a
b
i
l
i
t
i
e
s
G
i
v
e
s
t
h
e
a
v
e
r
a
g
e
d
p
r
o
b
a
b
i
l
i
t
i
e
s
o
f
a
c
l
a
s
s
i
f
i
e
r
e
n
s
e
m
b
l
e
f
o
r
a
r
e
c
o
r
d
o
r
a
l
i
s
t
o
f
r
e
c
o
r
d
s
.
Examples
(
1
)
Basic Examples
(
1
)
Here is an ensemble classifier:
I
n
[
1
]
:
=
a
C
L
s
=
"
N
e
a
r
e
s
t
N
e
i
g
h
b
o
r
s
"
C
l
a
s
s
i
f
i
e
r
F
u
n
c
t
i
o
n
I
n
p
u
t
t
y
p
e
:
{
N
o
m
i
n
a
l
,
N
u
m
e
r
i
c
a
l
,
N
o
m
i
n
a
l
}
C
l
a
s
s
e
s
:
d
i
e
d
,
s
u
r
v
i
v
e
d
,
"
R
a
n
d
o
m
F
o
r
e
s
t
"
C
l
a
s
s
i
f
i
e
r
F
u
n
c
t
i
o
n
I
n
p
u
t
t
y
p
e
:
{
N
o
m
i
n
a
l
,
N
u
m
e
r
i
c
a
l
,
N
o
m
i
n
a
l
}
C
l
a
s
s
e
s
:
d
i
e
d
,
s
u
r
v
i
v
e
d
,
"
L
o
g
i
s
t
i
c
R
e
g
r
e
s
s
i
o
n
"
C
l
a
s
s
i
f
i
e
r
F
u
n
c
t
i
o
n
I
n
p
u
t
t
y
p
e
:
{
N
o
m
i
n
a
l
,
N
u
m
e
r
i
c
a
l
,
N
o
m
i
n
a
l
}
C
l
a
s
s
e
s
:
d
i
e
d
,
s
u
r
v
i
v
e
d
;
Here are record classifications with it:
I
n
[
2
]
:
=
r
e
c
o
r
d
s
=
{
{
"
3
r
d
"
,
7
.
`
,
"
m
a
l
e
"
}
,
{
"
1
s
t
"
,
5
8
.
`
,
"
f
e
m
a
l
e
"
}
,
{
"
2
n
d
"
,
5
4
.
`
,
"
f
e
m
a
l
e
"
}
}
;
E
n
s
e
m
b
l
e
C
l
a
s
s
i
f
y
[
a
C
L
s
,
r
e
c
o
r
d
s
]
O
u
t
[
2
]
=
{
d
i
e
d
,
s
u
r
v
i
v
e
d
,
s
u
r
v
i
v
e
d
}
Here the classifier probabilities are obtained:
I
n
[
3
]
:
=
E
n
s
e
m
b
l
e
C
l
a
s
s
i
f
i
e
r
P
r
o
b
a
b
i
l
i
t
i
e
s
[
a
C
L
s
,
r
e
c
o
r
d
s
]
O
u
t
[
3
]
=
{
d
i
e
d
0
.
7
4
1
9
3
4
,
s
u
r
v
i
v
e
d
0
.
2
5
8
0
6
6
,
d
i
e
d
0
.
1
4
9
0
1
7
,
s
u
r
v
i
v
e
d
0
.
8
5
0
9
8
3
,
d
i
e
d
0
.
4
3
6
7
3
4
,
s
u
r
v
i
v
e
d
0
.
5
6
3
2
6
6
}
Here the classifier votes are obtained
I
n
[
4
]
:
=
E
n
s
e
m
b
l
e
C
l
a
s
s
i
f
i
e
r
V
o
t
e
s
[
a
C
L
s
,
r
e
c
o
r
d
s
]
O
u
t
[
4
]
=
{
d
i
e
d
3
,
s
u
r
v
i
v
e
d
3
,
s
u
r
v
i
v
e
d
2
,
d
i
e
d
1
}
R
e
l
a
t
e
d
G
u
i
d
e
s
▪
E
n
s
e
m
b
l
e
s
o
f
c
l
a
s
s
i
f
i
e
r
s
"
"