[Feature] fit_transform ParameterLearning #77
Open
opened 2 years ago by AlessandroBregoli
·
0 comments
Loading…
Reference in new issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
Description
Add the method fit_transform to ParameterLearning. This method learn the parameter of a given node and update the network accordingly.
Acceptance Criteria
Checklist
fn fit_transform<T: process::NetworkProcess>( &self, net: &mut T, dataset: &tools::Dataset, node: usize)
(Optional) Extra info
It could be usefull to add a method for substituting parameters inside a
NetworkProcess
An alternative version of fit_transorm can be:
fn fit_transform<T: process::NetworkProcess>( &self, net: T, dataset: &tools::Dataset, node: usize) -> T