MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The IxTrainerRL interface is implemented by each RL Trainer. More...
Public Member Functions | |
ResultCollection | RunOne (int nDelay=1000) |
Run a single cycle on the trainer. More... | |
byte[] | Run (int nN, PropertySet runProp, out string type) |
Run a number of 'nN' samples on the trainer. More... | |
Public Member Functions inherited from MyCaffe.trainers.IxTrainer | |
bool | Initialize () |
Initialize the trainer. More... | |
bool | Shutdown (int nWait) |
Shutdown the trainer. More... | |
bool | Train (int nN, ITERATOR_TYPE type, TRAIN_STEP step) |
Train the network. More... | |
bool | Test (int nN, ITERATOR_TYPE type) |
Test the newtork. More... | |
The IxTrainerRL interface is implemented by each RL Trainer.
Definition at line 256 of file Interfaces.cs.
byte[] MyCaffe.trainers.IxTrainerRL.Run | ( | int | nN, |
PropertySet | runProp, | ||
out string | type | ||
) |
Run a number of 'nN' samples on the trainer.
nN | Specifies the number of samples to run. |
runProp | Optionally specifies properties to use when running. |
type | Specifies the output data type returned as a raw byte stream. |
Implemented in MyCaffe.trainers.dqn.c51.st.TrainerC51< T >, MyCaffe.trainers.dqn.noisy.simple.TrainerNoisyDqn< T >, MyCaffe.trainers.dqn.noisy.st.TrainerNoisyDqn< T >, MyCaffe.trainers.pg.mt.TrainerPG< T >, MyCaffe.trainers.pg.simple.TrainerPG< T >, and MyCaffe.trainers.pg.st.TrainerPG< T >.
ResultCollection MyCaffe.trainers.IxTrainerRL.RunOne | ( | int | nDelay = 1000 | ) |
Run a single cycle on the trainer.
nDelay | Specifies a delay to wait before getting the action. |
Implemented in MyCaffe.trainers.dqn.c51.st.TrainerC51< T >, MyCaffe.trainers.dqn.noisy.simple.TrainerNoisyDqn< T >, MyCaffe.trainers.dqn.noisy.st.TrainerNoisyDqn< T >, MyCaffe.trainers.pg.mt.TrainerPG< T >, MyCaffe.trainers.pg.simple.TrainerPG< T >, and MyCaffe.trainers.pg.st.TrainerPG< T >.