|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectwater.Iced
hex.Layer
public abstract class Layer
Neural network layer.
Nested Class Summary | |
---|---|
static class |
Layer.ChunkLinear
|
static class |
Layer.ChunksInput
|
static class |
Layer.ChunkSoftmax
|
static class |
Layer.Input
|
static class |
Layer.Linear
|
static class |
Layer.Output
|
static class |
Layer.Rectifier
|
static class |
Layer.Softmax
|
static class |
Layer.Tanh
|
static class |
Layer.VecLinear
|
static class |
Layer.VecsInput
|
static class |
Layer.VecSoftmax
|
Field Summary | |
---|---|
float |
_l2
|
float |
_momentum
|
float |
_momentumAnnealing
|
float |
_perWeight
|
float |
_perWeightAnnealing
|
float |
_rate
|
float |
_rateAnnealing
|
int |
_units
|
Constructor Summary | |
---|---|
protected |
Layer(int units)
|
Method Summary | |
---|---|
void |
anneal(long n)
|
Layer |
clone()
|
static void |
copyWeights(Layer[] src,
Layer[] dst)
|
void |
init(Layer[] ls,
int index)
|
void |
init(Layer[] ls,
int index,
boolean weights,
long step)
|
void |
momentum(long n)
|
Methods inherited from class water.Iced |
---|
frozenType, init, newInstance, read, toDocField, write, writeJSON, writeJSONFields |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public int _units
public float _rate
public float _rateAnnealing
public float _momentum
public float _momentumAnnealing
public float _perWeight
public float _perWeightAnnealing
public float _l2
Constructor Detail |
---|
protected Layer(int units)
Method Detail |
---|
public final void init(Layer[] ls, int index)
public void init(Layer[] ls, int index, boolean weights, long step)
public final void anneal(long n)
public final void momentum(long n)
public Layer clone()
clone
in class Iced
public static void copyWeights(Layer[] src, Layer[] dst)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |