MyCaffe  1.12.2.41
Deep learning software for Windows C# programmers.
MyCaffe.gym.DataPoint Class Reference

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...
 

Detailed Description

The DataPoint contains the data used when training.

Definition at line 235 of file Interfaces.cs.

Constructor & Destructor Documentation

◆ DataPoint()

MyCaffe.gym.DataPoint.DataPoint ( float[]  rgfInputs,
float[]  rgfMask,
float  fTarget,
List< double >  rgdfPredicted,
List< string >  rgstrPredicted,
List< bool >  rgbEmphasize,
float  fTime 
)

The constructor.

Parameters
rgfInputsSpecifies the inputs.
rgfMaskSpecifies the mask, where 1 indicates that the input at that same location is valid.
fTargetSpecifies the output target.
rgdfPredictedSpecifies the predicted values.
rgstrPredictedSpecifies the predicted labels.
rgbEmphasizeSpecifies which predicted labels to emphasize.
fTimeSpecifies the time of the data point.

Definition at line 255 of file Interfaces.cs.

Member Function Documentation

◆ Clone()

DataPoint MyCaffe.gym.DataPoint.Clone ( )

Copies the data point to a new data point.

Returns
The new copy is returned.

Definition at line 327 of file Interfaces.cs.

Property Documentation

◆ Inputs

float [] MyCaffe.gym.DataPoint.Inputs
get

Returns the inputs.

Definition at line 270 of file Interfaces.cs.

◆ Mask

float [] MyCaffe.gym.DataPoint.Mask
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.

◆ Predicted

List<double> MyCaffe.gym.DataPoint.Predicted
get

Returns the predicted values.

Definition at line 294 of file Interfaces.cs.

◆ PredictedEmphasize

List<bool> MyCaffe.gym.DataPoint.PredictedEmphasize
get

Returns the predicted labels to emphasize.

Definition at line 310 of file Interfaces.cs.

◆ PredictedLabels

List<string> MyCaffe.gym.DataPoint.PredictedLabels
get

Returns the predicted labels.

Definition at line 302 of file Interfaces.cs.

◆ Target

float MyCaffe.gym.DataPoint.Target
get

Returns the target value.

Definition at line 286 of file Interfaces.cs.

◆ Time

float MyCaffe.gym.DataPoint.Time
get

Returns the time for the data point.

Definition at line 318 of file Interfaces.cs.


The documentation for this class was generated from the following file: