hot update PG

This commit is contained in:
johnjim0816
2022-08-25 21:00:53 +08:00
parent 4f4658503e
commit 80f20c73be
34 changed files with 1391 additions and 1695 deletions

View File

@@ -0,0 +1,19 @@
{
"algo_name": "Q-learning",
"env_name": "FrozenLakeNoSlippery-v1",
"train_eps": 800,
"test_eps": 20,
"gamma": 0.9,
"epsilon_start": 0.7,
"epsilon_end": 0.1,
"epsilon_decay": 2000,
"lr": 0.9,
"device": "cpu",
"seed": 10,
"show_fig": false,
"save_fig": true,
"result_path": "/Users/jj/Desktop/rl-tutorials/codes/QLearning/outputs/FrozenLakeNoSlippery-v1/20220825-114335/results/",
"model_path": "/Users/jj/Desktop/rl-tutorials/codes/QLearning/outputs/FrozenLakeNoSlippery-v1/20220825-114335/models/",
"n_states": 16,
"n_actions": 4
}