MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The DataPoint contains the data used when training. More...
Public Member Functions | |
DataPoint (float[] rgfInputs, float[] rgfMask, float fTarget, List< double > rgdfPredicted, List< string > rgstrPredicted, List< bool > rgbEmphasize, float fTime) | |
The constructor. More... | |
DataPoint | Clone () |
Copies the data point to a new data point. More... | |
Properties | |
float[] | Inputs [get] |
Returns the inputs. More... | |
float[] | Mask [get] |
Returns the mask where a value of 1 indicates that the input at that same location is valid. More... | |
float | Target [get] |
Returns the target value. More... | |
List< double > | Predicted [get] |
Returns the predicted values. More... | |
List< string > | PredictedLabels [get] |
Returns the predicted labels. More... | |
List< bool > | PredictedEmphasize [get] |
Returns the predicted labels to emphasize. More... | |
float | Time [get] |
Returns the time for the data point. More... | |
The DataPoint contains the data used when training.
Definition at line 235 of file Interfaces.cs.
MyCaffe.gym.DataPoint.DataPoint | ( | float[] | rgfInputs, |
float[] | rgfMask, | ||
float | fTarget, | ||
List< double > | rgdfPredicted, | ||
List< string > | rgstrPredicted, | ||
List< bool > | rgbEmphasize, | ||
float | fTime | ||
) |
The constructor.
rgfInputs | Specifies the inputs. |
rgfMask | Specifies the mask, where 1 indicates that the input at that same location is valid. |
fTarget | Specifies the output target. |
rgdfPredicted | Specifies the predicted values. |
rgstrPredicted | Specifies the predicted labels. |
rgbEmphasize | Specifies which predicted labels to emphasize. |
fTime | Specifies the time of the data point. |
Definition at line 255 of file Interfaces.cs.
DataPoint MyCaffe.gym.DataPoint.Clone | ( | ) |
Copies the data point to a new data point.
Definition at line 327 of file Interfaces.cs.
|
get |
Returns the inputs.
Definition at line 270 of file Interfaces.cs.
|
get |
Returns the mask where a value of 1 indicates that the input at that same location is valid.
Definition at line 278 of file Interfaces.cs.
|
get |
Returns the predicted values.
Definition at line 294 of file Interfaces.cs.
|
get |
Returns the predicted labels to emphasize.
Definition at line 310 of file Interfaces.cs.
|
get |
Returns the predicted labels.
Definition at line 302 of file Interfaces.cs.
|
get |
Returns the target value.
Definition at line 286 of file Interfaces.cs.
|
get |
Returns the time for the data point.
Definition at line 318 of file Interfaces.cs.