Description Usage Arguments Value Methods (by class) References See Also Examples
Find and apply the best threshold based on cardinality of training set. The threshold is choice based on how much the average observed label cardinality is close to the average predicted label cardinality.
1 2 3 4 5 6 7 | lcard_threshold(prediction, cardinality, probability = FALSE)
## Default S3 method:
lcard_threshold(prediction, cardinality, probability = FALSE)
## S3 method for class 'mlresult'
lcard_threshold(prediction, cardinality, probability = FALSE)
|
prediction |
A matrix or mlresult. |
cardinality |
A real value of training dataset label cardinality, used to define the threshold value. |
probability |
A logical value. If |
A mlresult object.
default
: Cardinality Threshold for matrix or data.frame
mlresult
: Cardinality Threshold for mlresult
Read, J., Pfahringer, B., Holmes, G., & Frank, E. (2011). Classifier chains for multi-label classification. Machine Learning, 85(3), 333-359.
Other threshold:
fixed_threshold()
,
mcut_threshold()
,
pcut_threshold()
,
rcut_threshold()
,
scut_threshold()
,
subset_correction()
1 2 | prediction <- matrix(runif(16), ncol = 4)
lcard_threshold(prediction, 2.1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.