use burn_core as burn;useburn::config::Config;/// The reduction type for the loss.
#[derive(Config, Debug)]pubenumReduction{/// The mean of the losses will be returned.
Mean,/// The sum of the losses will be returned.
Sum,/// The mean of the losses will be returned.
Auto,}