Class | Description |
---|---|
ElementWiseMultiplicationLayer |
Elementwise multiplication layer with weights: implements out = activationFn(input .* w + b) where:
- w is a learnable weight vector of length nOut - ".*" is element-wise multiplication - b is a bias vector Note that the input and output sizes of the element-wise layer are the same for this layer |
ElementWiseMultiplicationLayer.Builder | |
FrozenLayer |
Created by Alex on 10/07/2017.
|
FrozenLayer.Builder | |
FrozenLayerWithBackprop |
Frozen layer freezes parameters of the layer it wraps, but allows the backpropagation to continue.
|
Copyright © 2018. All rights reserved.