rmse {fastai} | R Documentation |
RMSE
Description
Root mean squared error
Usage
rmse(preds, targs)
Arguments
preds |
predictions |
targs |
targets |
Value
None
Examples
## Not run:
model = dls %>% tabular_learner(layers=c(200,100,100,200),
metrics = list(mse(),rmse()) )
## End(Not run)
[Package fastai version 2.2.2 Index]