MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The LookupCollection class contains a collection of Lookup objects. More...
Public Member Functions | |
LookupCollection () | |
The constructor. More... | |
void | Add (Lookup lookup) |
Adds a new lookup to the collection. More... | |
Lookup | Find (string strName) |
Locates a lookup by name. More... | |
Static Public Member Functions | |
static LookupCollection | Load (XmlNode node) |
Loads the LookupCollection from a node. More... | |
Properties | |
Lookup | this[int nIdx] [get] |
Get a specific lookup by index. More... | |
int | Count [get] |
Specifies the number of lookups in the collection. More... | |
The LookupCollection class contains a collection of Lookup objects.
Definition at line 353 of file DataSchema.cs.
MyCaffe.layers.tft.LookupCollection.LookupCollection | ( | ) |
The constructor.
Definition at line 360 of file DataSchema.cs.
void MyCaffe.layers.tft.LookupCollection.Add | ( | Lookup | lookup | ) |
Adds a new lookup to the collection.
lookup | Specifies the lookup to add. |
Definition at line 387 of file DataSchema.cs.
Lookup MyCaffe.layers.tft.LookupCollection.Find | ( | string | strName | ) |
Locates a lookup by name.
strName | Specifies the lookup to find. |
Definition at line 397 of file DataSchema.cs.
|
static |
Loads the LookupCollection from a node.
node | Specifies the XML node containing the Lookups. |
Definition at line 369 of file DataSchema.cs.
|
get |
Specifies the number of lookups in the collection.
Definition at line 418 of file DataSchema.cs.
|
get |
Get a specific lookup by index.
nIdx | Specifies the index of the lookup. |
Definition at line 410 of file DataSchema.cs.