You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to losses.rs we need it for activations.rs to create activation functions there so users can decide themselves which activation function they want to use instead of pre-defined ones implemented in the fit functions.
Should look something like:
let mut model = LogisticalRegression::new(CrossEntropy, ActivationFunctionHere);
The text was updated successfully, but these errors were encountered:
mjovanc
changed the title
Make it possible to add custom activation function
Make it possible to add activation function
Jan 26, 2025
Similar to losses.rs we need it for activations.rs to create activation functions there so users can decide themselves which activation function they want to use instead of pre-defined ones implemented in the fit functions.
Should look something like:
let mut model = LogisticalRegression::new(CrossEntropy, ActivationFunctionHere);
The text was updated successfully, but these errors were encountered: