2020-03-10 11:14:14 -07:00
|
|
|
import pytest
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
import ray
|
|
|
|
import ray.rllib.agents.dqn.apex as apex
|
2021-09-08 14:29:40 -07:00
|
|
|
from ray.rllib.policy.sample_batch import DEFAULT_POLICY_ID
|
2022-01-29 18:41:57 -08:00
|
|
|
from ray.rllib.utils.metrics.learner_info import LEARNER_INFO, LEARNER_STATS_KEY
|
|
|
|
from ray.rllib.utils.test_utils import (
|
|
|
|
check,
|
|
|
|
check_compute_single_action,
|
|
|
|
check_train_results,
|
|
|
|
framework_iterator,
|
|
|
|
)
|
2020-03-10 11:14:14 -07:00
|
|
|
|
|
|
|
|
2020-05-04 09:36:27 +02:00
|
|
|
class TestApexDQN(unittest.TestCase):
|
2020-03-10 11:14:14 -07:00
|
|
|
def setUp(self):
|
|
|
|
ray.init(num_cpus=4)
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
ray.shutdown()
|
|
|
|
|
2020-05-11 20:24:43 -07:00
|
|
|
def test_apex_zero_workers(self):
|
|
|
|
config = apex.APEX_DEFAULT_CONFIG.copy()
|
|
|
|
config["num_workers"] = 0
|
2021-08-02 17:29:59 -04:00
|
|
|
config["num_gpus"] = 0
|
2020-06-12 20:17:27 -07:00
|
|
|
config["learning_starts"] = 1000
|
2020-05-11 20:24:43 -07:00
|
|
|
config["prioritized_replay"] = True
|
|
|
|
config["timesteps_per_iteration"] = 100
|
2022-01-25 14:16:58 +01:00
|
|
|
config["min_time_s_per_reporting"] = 1
|
2020-05-11 20:24:43 -07:00
|
|
|
config["optimizer"]["num_replay_buffer_shards"] = 1
|
2020-07-11 22:06:35 +02:00
|
|
|
for _ in framework_iterator(config):
|
2020-05-27 16:19:13 +02:00
|
|
|
trainer = apex.ApexTrainer(config=config, env="CartPole-v0")
|
2021-09-30 16:39:05 +02:00
|
|
|
results = trainer.train()
|
|
|
|
check_train_results(results)
|
|
|
|
print(results)
|
2020-05-27 16:19:13 +02:00
|
|
|
trainer.stop()
|
2020-05-11 20:24:43 -07:00
|
|
|
|
2020-05-04 09:36:27 +02:00
|
|
|
def test_apex_dqn_compilation_and_per_worker_epsilon_values(self):
|
2020-04-20 10:03:25 +02:00
|
|
|
"""Test whether an APEX-DQNTrainer can be built on all frameworks."""
|
2020-03-10 11:14:14 -07:00
|
|
|
config = apex.APEX_DEFAULT_CONFIG.copy()
|
|
|
|
config["num_workers"] = 3
|
2021-08-02 17:29:59 -04:00
|
|
|
config["num_gpus"] = 0
|
2020-06-12 20:17:27 -07:00
|
|
|
config["learning_starts"] = 1000
|
2020-04-20 10:03:25 +02:00
|
|
|
config["prioritized_replay"] = True
|
2020-04-23 12:39:19 -07:00
|
|
|
config["timesteps_per_iteration"] = 100
|
2022-01-25 14:16:58 +01:00
|
|
|
config["min_time_s_per_reporting"] = 1
|
2020-03-10 11:14:14 -07:00
|
|
|
config["optimizer"]["num_replay_buffer_shards"] = 1
|
2020-04-06 20:56:16 +02:00
|
|
|
|
2021-11-05 16:10:00 +01:00
|
|
|
for _ in framework_iterator(config, with_eager_tracing=True):
|
2020-04-20 10:03:25 +02:00
|
|
|
plain_config = config.copy()
|
|
|
|
trainer = apex.ApexTrainer(config=plain_config, env="CartPole-v0")
|
|
|
|
|
|
|
|
# Test per-worker epsilon distribution.
|
2020-04-06 20:56:16 +02:00
|
|
|
infos = trainer.workers.foreach_policy(
|
2022-01-29 18:41:57 -08:00
|
|
|
lambda p, _: p.get_exploration_state()
|
|
|
|
)
|
2020-05-04 09:36:27 +02:00
|
|
|
expected = [0.4, 0.016190862, 0.00065536]
|
|
|
|
check([i["cur_epsilon"] for i in infos], [0.0] + expected)
|
2020-03-10 11:14:14 -07:00
|
|
|
|
2020-06-13 17:51:50 +02:00
|
|
|
check_compute_single_action(trainer)
|
2020-05-08 16:31:31 +02:00
|
|
|
|
2021-05-20 09:27:03 +02:00
|
|
|
for i in range(2):
|
2021-09-30 16:39:05 +02:00
|
|
|
results = trainer.train()
|
|
|
|
check_train_results(results)
|
|
|
|
print(results)
|
2020-04-23 12:39:19 -07:00
|
|
|
|
2020-05-04 09:36:27 +02:00
|
|
|
# Test again per-worker epsilon distribution
|
|
|
|
# (should not have changed).
|
|
|
|
infos = trainer.workers.foreach_policy(
|
2022-01-29 18:41:57 -08:00
|
|
|
lambda p, _: p.get_exploration_state()
|
|
|
|
)
|
2020-05-04 09:36:27 +02:00
|
|
|
check([i["cur_epsilon"] for i in infos], [0.0] + expected)
|
|
|
|
|
2020-04-23 12:39:19 -07:00
|
|
|
trainer.stop()
|
2020-04-20 10:03:25 +02:00
|
|
|
|
2021-09-08 14:29:40 -07:00
|
|
|
def test_apex_lr_schedule(self):
|
|
|
|
config = apex.APEX_DEFAULT_CONFIG.copy()
|
|
|
|
config["num_workers"] = 1
|
|
|
|
config["num_gpus"] = 0
|
|
|
|
config["buffer_size"] = 100
|
|
|
|
config["learning_starts"] = 10
|
|
|
|
config["train_batch_size"] = 10
|
|
|
|
config["rollout_fragment_length"] = 5
|
|
|
|
config["prioritized_replay"] = True
|
|
|
|
config["timesteps_per_iteration"] = 10
|
|
|
|
# 0 metrics reporting delay, this makes sure timestep,
|
|
|
|
# which lr depends on, is updated after each worker rollout.
|
2022-01-25 14:16:58 +01:00
|
|
|
config["min_time_s_per_reporting"] = 0
|
2021-09-08 14:29:40 -07:00
|
|
|
config["optimizer"]["num_replay_buffer_shards"] = 1
|
|
|
|
# This makes sure learning schedule is checked every 10 timesteps.
|
|
|
|
config["optimizer"]["max_weight_sync_delay"] = 10
|
|
|
|
# Initial lr, doesn't really matter because of the schedule below.
|
|
|
|
config["lr"] = 0.2
|
|
|
|
lr_schedule = [
|
|
|
|
[0, 0.2],
|
2021-11-02 08:52:56 -07:00
|
|
|
[100, 0.001],
|
2021-09-08 14:29:40 -07:00
|
|
|
]
|
|
|
|
config["lr_schedule"] = lr_schedule
|
|
|
|
|
|
|
|
def _step_n_times(trainer, n: int):
|
|
|
|
"""Step trainer n times.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
learning rate at the end of the execution.
|
|
|
|
"""
|
|
|
|
for _ in range(n):
|
|
|
|
results = trainer.train()
|
2022-01-29 18:41:57 -08:00
|
|
|
return results["info"][LEARNER_INFO][DEFAULT_POLICY_ID][LEARNER_STATS_KEY][
|
|
|
|
"cur_lr"
|
|
|
|
]
|
2021-09-08 14:29:40 -07:00
|
|
|
|
|
|
|
for _ in framework_iterator(config):
|
|
|
|
trainer = apex.ApexTrainer(config=config, env="CartPole-v0")
|
|
|
|
|
2021-11-02 08:52:56 -07:00
|
|
|
lr = _step_n_times(trainer, 1) # 10 timesteps
|
|
|
|
# Close to 0.2
|
|
|
|
self.assertGreaterEqual(lr, 0.1)
|
2021-09-08 14:29:40 -07:00
|
|
|
|
2021-11-02 08:52:56 -07:00
|
|
|
lr = _step_n_times(trainer, 20) # 200 timesteps
|
|
|
|
# LR Annealed to 0.001
|
|
|
|
self.assertLessEqual(lr, 0.0011)
|
2021-09-08 14:29:40 -07:00
|
|
|
|
|
|
|
trainer.stop()
|
|
|
|
|
2020-03-10 11:14:14 -07:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
2022-01-29 18:41:57 -08:00
|
|
|
|
2020-03-10 11:14:14 -07:00
|
|
|
sys.exit(pytest.main(["-v", __file__]))
|