pub type LinearLayer<T> = LayerBase<Linear, T>;Expand description
A type alias for a layer using a linear activation function.
Aliased Type§
pub struct LinearLayer<T> {
pub rho: Linear,
pub params: T,
}Fields§
§rho: Linearthe activation function of the layer
params: Tthe parameters of the layer; often weights and biases