MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The Field class manages a single field. More...
Public Types | |
enum | DATA_TYPE { REAL , CATEGORICAL } |
Defines the Data Type of the field. More... | |
enum | INPUT_TYPE { NONE = 0x0000 , TIME = 0x0001 , ID = 0x0002 , KNOWN = 0x0004 , OBSERVED = 0x0008 , STATIC = 0x0010 , TARGET = 0x1000 } |
Defines the input type of the field. More... | |
Public Member Functions | |
Field (string strName, int nIdx, DATA_TYPE dataType, INPUT_TYPE inputType) | |
The constructor. More... | |
Field (ValueStreamDescriptor vsd) | |
Create a new field from the ValueStreamDescriptor specified. More... | |
override string | ToString () |
Returns a string representation of the field. More... | |
Static Public Member Functions | |
static Field | Load (XmlNode node) |
Loads a new field from an XML node. More... | |
Properties | |
string | Name [get] |
Returns the name of the field. More... | |
int | Index [get] |
Returns the Index of the field within the numpy file. More... | |
DATA_TYPE | DataType [get] |
Returns the data type of the field. More... | |
INPUT_TYPE | InputType [get] |
Returns the input type of the field. More... | |
The Field class manages a single field.
Definition at line 819 of file DataSchema.cs.
Defines the Data Type of the field.
Enumerator | |
---|---|
REAL | Specifies the field contains a real value. |
CATEGORICAL | Specifies the field contains a categorical value. |
Definition at line 829 of file DataSchema.cs.
Defines the input type of the field.
Definition at line 844 of file DataSchema.cs.
MyCaffe.layers.tft.Field.Field | ( | string | strName, |
int | nIdx, | ||
DATA_TYPE | dataType, | ||
INPUT_TYPE | inputType | ||
) |
The constructor.
strName | Specifies the field name. |
nIdx | Specifies the index of the field within the NPY file. |
dataType | Specifies the field data type. |
inputType | Specifies the field input type. |
Definition at line 883 of file DataSchema.cs.
MyCaffe.layers.tft.Field.Field | ( | ValueStreamDescriptor | vsd | ) |
Create a new field from the ValueStreamDescriptor specified.
vsd | Specifies the ValueStreamDescriptor used to create the field. |
Definition at line 895 of file DataSchema.cs.
|
static |
Loads a new field from an XML node.
node | Specifies the XML node containing the field. |
Definition at line 922 of file DataSchema.cs.
override string MyCaffe.layers.tft.Field.ToString | ( | ) |
Returns a string representation of the field.
Definition at line 992 of file DataSchema.cs.
|
get |
Returns the data type of the field.
Definition at line 975 of file DataSchema.cs.
|
get |
Returns the Index of the field within the numpy file.
Definition at line 967 of file DataSchema.cs.
|
get |
Returns the input type of the field.
Definition at line 983 of file DataSchema.cs.
|
get |
Returns the name of the field.
Definition at line 959 of file DataSchema.cs.