Module corgi::layer[][src]

Expand description

Implementations of neural network layers.

Modules

A convolutional neural network layer, which applies y = activation(x.conv(filters) + b).

A fully-connected neural network layer, which applies y = activation(Ax + b).

Traits

A layer of a neural network, which implements a forward, and backward pass.