fix list to array in constants.py

This commit is contained in:
robcaulk 2022-11-26 13:47:47 +01:00
parent be890b52fd
commit b52f05923a
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ CONF_SCHEMA = {
"cpu_count": {"type": "integer", "default": 1},
"model_type": {"type": "string", "default": "PPO"},
"policy_type": {"type": "string", "default": "MlpPolicy"},
"net_arch": {"type": "list", "default": [128, 128]},
"net_arch": {"type": "array", "default": [128, 128]},
"model_reward_parameters": {
"type": "object",
"properties": {