1
0
mirror of https://github.com/gryf/coach.git synced 2026-04-18 21:53:32 +02:00
This commit is contained in:
Gal Leibovich
2019-06-16 11:11:21 +03:00
committed by GitHub
parent 8df3c46756
commit 7eb884c5b2
107 changed files with 2200 additions and 495 deletions

View File

@@ -37,9 +37,9 @@ agent_params.network_wrappers['main'].input_embedders_parameters = {
}
agent_params.exploration = AdditiveNoiseParameters()
agent_params.exploration.noise_percentage_schedule = ConstantSchedule(0.05)
# agent_params.exploration.noise_percentage_schedule = LinearSchedule(0.4, 0.05, 100000)
agent_params.exploration.evaluation_noise_percentage = 0.05
agent_params.exploration.noise_schedule = ConstantSchedule(0.05)
# agent_params.exploration.noise_schedule = LinearSchedule(0.4, 0.05, 100000)
agent_params.exploration.evaluation_noise = 0.05
agent_params.network_wrappers['main'].batch_size = 64
agent_params.network_wrappers['main'].optimizer_epsilon = 1e-5