Mean squared error between `inp` and `targ`.

mse(inp, targ)

Arguments

inp

predictions

targ

targets

Value

None

Examples


if (FALSE) {

model = dls %>% tabular_learner(layers=c(200,100,100,200),
metrics = list(mse(),rmse()) )

}