Module dfdx::losses

source · []

Functions

Cross entropy loss. This will call logits.log_softmax(), so make sure logits is not the output from softmax() or log_softmax() already.

Mean absolute error. This is the same as doing (pred - &targ).abs().mean()

Mean Squared Error. This is the same as doing (pred - &targ).abs().mean()