MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The GymCollection contains the available Gyms. More...
Public Member Functions | |
GymCollection () | |
The constructor. More... | |
List< Exception > | Load () |
Loads the default and dynamic gyms. More... | |
IXMyCaffeGym | Find (string strName) |
Search for a given Gym by its name. More... | |
IEnumerator< IXMyCaffeGym > | GetEnumerator () |
Returns the collections enumerator. More... | |
The GymCollection contains the available Gyms.
Definition at line 15 of file GymCollection.cs.
MyCaffe.gym.GymCollection.GymCollection | ( | ) |
The constructor.
Definition at line 22 of file GymCollection.cs.
IXMyCaffeGym MyCaffe.gym.GymCollection.Find | ( | string | strName | ) |
Search for a given Gym by its name.
strName | Specifies the name of the Gym to look for. |
Definition at line 130 of file GymCollection.cs.
IEnumerator< IXMyCaffeGym > MyCaffe.gym.GymCollection.GetEnumerator | ( | ) |
Returns the collections enumerator.
Definition at line 149 of file GymCollection.cs.
List< Exception > MyCaffe.gym.GymCollection.Load | ( | ) |
Loads the default and dynamic gyms.
Each dynamic Gym must implement a DLL with the IXMyCaffeGym interface implemented. When loading dynamic Gym's, this class looks for these DLL's in the
directory relative to the location of the MyCaffe.gym assembly.
Definition at line 34 of file GymCollection.cs.