From b52f05923aac4fed453f03e3eae133884909038f Mon Sep 17 00:00:00 2001 From: robcaulk Date: Sat, 26 Nov 2022 13:47:47 +0100 Subject: [PATCH] fix list to array in constants.py --- freqtrade/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 3d7dbb13e..878c38929 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -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": {