ce | R Documentation |
Measure to compare true observed labels with predicted labels in multiclass classification tasks.
ce(truth, response, sample_weights = NULL, ...)
truth |
( |
response |
( |
sample_weights |
( |
... |
( |
The Classification Error is defined as
\frac{1}{n} \sum_{i=1}^n w_i \mathbf{1} \left( t_i \neq r_i \right),
where w_i
are normalized weights for each observation x_i
.
Performance value as numeric(1)
.
Type: "classif"
Range: [0, 1]
Minimize: TRUE
Required prediction: response
Other Classification Measures:
acc()
,
bacc()
,
logloss()
,
mauc_aunu()
,
mbrier()
,
mcc()
,
zero_one()
set.seed(1)
lvls = c("a", "b", "c")
truth = factor(sample(lvls, 10, replace = TRUE), levels = lvls)
response = factor(sample(lvls, 10, replace = TRUE), levels = lvls)
ce(truth, response)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.