MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The State class defines an abstract base class for the state information and gym data. More...
Public Member Functions | |
State () | |
The constructor. More... | |
abstract State | Clone () |
Copies the state to another new state. More... | |
abstract SimpleDatum | GetData (bool bNormalize, out int nDataLen) |
Get the data. More... | |
virtual SimpleDatum | GetClip () |
Get the clip data (used with recurrent models such as LSTM). More... | |
virtual SimpleDatum | GetLabel () |
Get the label data (used with recurrent models such as LSTM with dynamic data). More... | |
Protected Attributes | |
List< DataPoint > | m_rgPrevPoints = new List<DataPoint>() |
Contains the history of the previous target points. More... | |
Properties | |
virtual bool | HasClip [get] |
Returns 'true' if this State supports clip data. More... | |
virtual bool | HasLabel [get] |
Returns 'true' if this state supports label data. More... | |
List< DataPoint > | History [get] |
Returns the history of the previous points if provided by the gym. More... | |
The State class defines an abstract base class for the state information and gym data.
Definition at line 336 of file Interfaces.cs.
MyCaffe.gym.State.State | ( | ) |
The constructor.
Definition at line 346 of file Interfaces.cs.
|
pure virtual |
Copies the state to another new state.
|
virtual |
Get the clip data (used with recurrent models such as LSTM).
Definition at line 369 of file Interfaces.cs.
|
pure virtual |
Get the data.
bNormalize | Specifies to normalize the data. |
nDataLen | Returns the non-render data length (the actual data used in training) |
|
virtual |
Get the label data (used with recurrent models such as LSTM with dynamic data).
Definition at line 378 of file Interfaces.cs.
Contains the history of the previous target points.
Definition at line 341 of file Interfaces.cs.
|
get |
Returns 'true' if this State supports clip data.
Definition at line 364 of file Interfaces.cs.
|
get |
Returns 'true' if this state supports label data.
Definition at line 373 of file Interfaces.cs.
|
get |
Returns the history of the previous points if provided by the gym.
Definition at line 383 of file Interfaces.cs.