theanets.layers.feedforward.Input

class theanets.layers.feedforward.Input(**kwargs)

The input of a network is a special type of layer with no parameters.

Input layers essentially add only noise to the input data (if desired), but otherwise reproduce their inputs exactly.

__init__(**kwargs)

Methods

__init__(**kwargs)
log() Log some information about this layer.
to_spec() Create a specification for this layer.

Attributes

input_size For networks with one input, get the input size.
num_params Total number of learnable parameters in this layer.
params A list of all parameters in this layer.
log()

Log some information about this layer.

to_spec()

Create a specification for this layer.

Returns:

spec : int

A single integer specifying the size of this layer.