|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--lnsc.DataNames | +--lnsc.lstm.LSTMDataNames
Title: LSTM
Description: Long Short-Term Memory
Copyright: Copyright (c) 2005
Company: UdeM
Field Summary | |
static java.lang.String |
LSTM_FORGET_GATES
A double[b] array in FastLSTMNetwork representing the
activity of the forget gates of the b memory blocks in order. |
static java.lang.String |
LSTM_INPUT_GATES
A double[b] array in FastLSTMNetwork representing the
activity of the input gates of the b memory blocks in order. |
static java.lang.String |
LSTM_INTERNAL_ACTIVATIONS
A double[b*c] array in FastLSTMNetwork representing the
concatenation of the b memory block c cell's output
activity in order. |
static java.lang.String |
LSTM_INTERNAL_STATES
A double[c] array in FastLSTMMemoryBlock representing the
activity in the c memory cells. |
static java.lang.String |
LSTM_OUTPUT_GATES
A double[b] array in FastLSTMNetwork representing the
activity of the output gate of the b memory blocks in order. |
Methods inherited from class lnsc.DataNames |
concat, isMember |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.lang.String LSTM_FORGET_GATES
double[b]
array in FastLSTMNetwork representing the
activity of the forget gates of the b memory blocks in order.
public static final java.lang.String LSTM_INPUT_GATES
double[b]
array in FastLSTMNetwork representing the
activity of the input gates of the b memory blocks in order.
public static final java.lang.String LSTM_INTERNAL_ACTIVATIONS
double[b*c]
array in FastLSTMNetwork representing the
concatenation of the b memory block c cell's output
activity in order.
public static final java.lang.String LSTM_INTERNAL_STATES
double[c]
array in FastLSTMMemoryBlock representing the
activity in the c memory cells. A double[c*m]
array
in FastLSTMNetwork representing the concatenation of the internal
activity of the memory cells of the b memory blocks in order.
public static final java.lang.String LSTM_OUTPUT_GATES
double[b]
array in FastLSTMNetwork representing the
activity of the output gate of the b memory blocks in order.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |