DenseData

Input layer representing a dense float[]

class DenseData : Data!(LayerT.DENSE) {}

Constructors

this
this()
Undocumented in source.
this
this(ulong dim_out)
Undocumented in source.

Members

Mixins

__anonymous
mixin opCallNew
Undocumented in source.

Mixed In Members

From mixin opCallNew

opCall
auto opCall(T args)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

auto l = DenseData(50); // this layer will feed a 50-dimension dense float[] to its children.

Meta