Description Usage Arguments Value Methods (by class) References See Also Examples
The Rank Cut (RCut) method is an instance-wise strategy, which outputs the k labels with the highest scores for each instance at the deployment.
1 2 3 4 5 6 7 | rcut_threshold(prediction, k, probability = FALSE)
## Default S3 method:
rcut_threshold(prediction, k, probability = FALSE)
## S3 method for class 'mlresult'
rcut_threshold(prediction, k, probability = FALSE)
|
prediction |
A matrix or mlresult. |
k |
The number of elements that will be positive. |
probability |
A logical value. If |
A mlresult object.
default
: Rank Cut (RCut) threshold method for matrix
mlresult
: Rank Cut (RCut) threshold method for mlresult
Al-Otaibi, R., Flach, P., & Kull, M. (2014). Multi-label Classification: A Comparative Study on Threshold Selection Methods. In First International Workshop on Learning over Multiple Contexts (LMCE) at ECML-PKDD 2014.
Other threshold:
fixed_threshold()
,
lcard_threshold()
,
mcut_threshold()
,
pcut_threshold()
,
scut_threshold()
,
subset_correction()
1 2 | prediction <- matrix(runif(16), ncol = 4)
rcut_threshold(prediction, 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.