|
|||||||||
| 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.Input
|
static class |
Layer.Linear
|
static class |
Layer.Maxout
Pulled from Chris Severs TODO finish merge |
static class |
Layer.Output
|
static class |
Layer.Rectifier
|
static class |
Layer.RectifierDropout
|
static class |
Layer.RectifierPrime
|
static class |
Layer.Softmax
|
static class |
Layer.Tanh
|
static class |
Layer.TanhDropout
|
static class |
Layer.TanhPrime
Apply tanh to the weights' transpose. |
static class |
Layer.VecLinear
|
static class |
Layer.VecsInput
|
static class |
Layer.VecSoftmax
|
| Field Summary | |
|---|---|
static DocGen.FieldDoc[] |
DOC_FIELDS
|
float |
dropout
|
float |
l2
|
float |
rate
|
float |
rate_annealing
|
int |
units
|
| Constructor Summary | |
|---|---|
Layer()
|
|
| Method Summary | |
|---|---|
void |
anneal(long n)
|
Layer |
clone()
|
void |
init(Layer[] ls,
int index)
|
void |
init(Layer[] ls,
int index,
boolean weights,
long step)
|
void |
momentum(long n)
|
float |
rate(long n)
|
static void |
shareWeights(Layer[] src,
Layer[] dst)
|
static void |
shareWeights(Layer src,
Layer dst)
|
AutoBuffer |
writeJSON(AutoBuffer bb)
|
| Methods inherited from class water.Iced |
|---|
frozenType, init, newInstance, read, toDocField, write, writeJSONFields |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static DocGen.FieldDoc[] DOC_FIELDS
public int units
public float rate
public float rate_annealing
public float l2
public float dropout
| Constructor Detail |
|---|
public Layer()
| 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 float rate(long n)
public final void momentum(long n)
public Layer clone()
clone in class Iced
public static void shareWeights(Layer src,
Layer dst)
public static void shareWeights(Layer[] src,
Layer[] dst)
public AutoBuffer writeJSON(AutoBuffer bb)
writeJSON in class Iced
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||