Expand description
iterators for parameters within a neural network
Modules§
- iter_
params - Iterators for parameters within a neural network
Structs§
- Params
Iter - The
ParamsIterdefines a iterator over owned parameters within a neural network by zipping together an axis iterator over the columns of the weights and an iterator over the bias. - Params
Iter Mut - The
ParamsIterMuttype provides a mutable iterator over the parameters of a neural network layer by zipping together a mutable axis iterator over the columns of the weights and a mutable iterator over the bias.