luz_metric_accuracy | R Documentation |
Computes accuracy for multi-class classification problems.
luz_metric_accuracy()
This metric expects to take logits or probabilities at every update. It will then take the columnwise argmax and compare to the target.
Returns new luz metric.
Other luz_metrics:
luz_metric_binary_accuracy_with_logits()
,
luz_metric_binary_accuracy()
,
luz_metric_binary_auroc()
,
luz_metric_mae()
,
luz_metric_mse()
,
luz_metric_multiclass_auroc()
,
luz_metric_rmse()
,
luz_metric()
if (torch::torch_is_installed()) {
library(torch)
metric <- luz_metric_accuracy()
metric <- metric$new()
metric$update(torch_randn(100, 10), torch::torch_randint(1, 10, size = 100))
metric$compute()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.