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 optimizers.rs to create optimizer there so users can decide themselves which optimizer they want to use instead of pre-defined ones implemented in the fit functions.
Should look something like:
let mut model = LogisticalRegression::new(CrossEntropy, OptimizerFunctionHere);
The text was updated successfully, but these errors were encountered:
Similar to losses.rs we need it for optimizers.rs to create optimizer there so users can decide themselves which optimizer they want to use instead of pre-defined ones implemented in the fit functions.
Should look something like:
let mut model = LogisticalRegression::new(CrossEntropy, OptimizerFunctionHere);
The text was updated successfully, but these errors were encountered: