noisy_loss_wrapper | R Documentation |
Implements approach from this paper and code from here. Can be used if labeled data contains noise, i.e. some of the data is labeled wrong.
noisy_loss_wrapper(noise_matrix)
noise_matrix |
Matrix of noise distribution. |
A function implementing noisy loss.
# If first label contains 5% wrong labels and second label no noise
noise_matrix <- matrix(c(0.95, 0.05, 0, 1), nrow = 2, byrow = TRUE)
noisy_loss <- noisy_loss_wrapper(noise_matrix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.