DQN
Deep Q-Learning
Algorithm: DQN with target network
Basic Parameters
"agent": [{
"name": str,
"algorithm": {
"name": str,
"action_pdtype": str,
"action_policy": str,
"explore_var_start": float,
"explore_var_end": float,
"explore_anneal_epi": int,
"gamma": float,
"training_batch_epoch": int,
"training_epoch": int,
"training_frequency": int,
},
"memory": {
"name": str,
"batch_size": int,
"max_size": int
},
"net": {
"type": str,
"hid_layers": list,
"hid_layers_activation": str,
"optim_spec": dict,
}
}],
...
}Advanced parameters
Last updated
Was this helpful?