From 6c78ef80c8f97b82124c027b71d514e6b05d45d9 Mon Sep 17 00:00:00 2001 From: Julian Dierkes <63733611+LabChameleon@users.noreply.github.com> Date: Fri, 5 Sep 2025 16:00:24 -0400 Subject: [PATCH] fixing ppo clipping epsilon --- benchmark_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark_handler.py b/benchmark_handler.py index d345a23..459448e 100644 --- a/benchmark_handler.py +++ b/benchmark_handler.py @@ -37,7 +37,7 @@ def __init__(self, data_path: str = "", environment: str = None, search_space: U "static": { "PPO": {"lr": [-6, -5, -4, -3, -2, -1], "gamma": [0.8, 0.9, 0.95, 0.98, 0.99, 1.0], - "clip": [0.2, 0.3, 0.4]}, + "clip": [0.1, 0.2, 0.3]}, "DQN": {"lr": [-6, -5, -4, -3, -2, -1], "gamma": [0.8, 0.9, 0.95, 0.98, 0.99, 1.0], "epsilon": [0.1, 0.2, 0.3]},