Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

top_k_accuracy

Top_k_accuracy


Description

Computes the Top-k accuracy ('targ' is in the top 'k' predictions of 'inp')

Usage

top_k_accuracy(inp, targ, k = 5, axis = -1)

Arguments

inp

predictions

targ

targets

k

k

axis

axis

Value

None

Examples

## Not run: 

loaders = loaders()

data = Data_Loaders(loaders['train'], loaders['valid'])$cuda()

model = nn$Sequential() +
  nn$Flatten() +
  nn$Linear(28L * 28L, 10L)
metrics = list(accuracy,top_k_accuracy)
learn = Learner(data, model, loss_func = F$cross_entropy, opt_func = Adam,
                metrics = metrics)


## End(Not run)

fastai

Interface to 'fastai'

v2.0.7
Apache License 2.0
Authors
Turgut Abdullayev [ctb, cre, cph, aut]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.