Training parameters
Training parameters define the exact parameter for the agent to train.
The training parameter model
The agent model contains all the information about the agent.
Properties
- Name
batch_size
- Type
- int
- Description
Size of the batch.
- Name
learning_rate
- Type
- float
- Description
Learning rate.
- Name
num_epochs
- Type
- int
- Description
Number of epochs.
Example Training Parameter
{
"batch_size": 32,
"learning_rate": 0.001,
"num_epochs": 30,
}