ray/rllib/agents/mbmpo/tests/test_mbmpo.py
Balaji Veeramani 7f1bacc7dc
[CI] Format Python code with Black (#21975)
See #21316 and #21311 for the motivation behind these changes.
2022-01-29 18:41:57 -08:00

48 lines
1.3 KiB
Python

import unittest
import ray
import ray.rllib.agents.mbmpo as mbmpo
from ray.rllib.utils.test_utils import (
check_compute_single_action,
check_train_results,
framework_iterator,
)
class TestMBMPO(unittest.TestCase):
@classmethod
def setUpClass(cls):
ray.init()
@classmethod
def tearDownClass(cls):
ray.shutdown()
def test_mbmpo_compilation(self):
"""Test whether an MBMPOTrainer can be built with all frameworks."""
config = mbmpo.DEFAULT_CONFIG.copy()
config["num_workers"] = 2
config["horizon"] = 200
config["dynamics_model"]["ensemble_size"] = 2
num_iterations = 1
# Test for torch framework (tf not implemented yet).
for _ in framework_iterator(config, frameworks="torch"):
trainer = mbmpo.MBMPOTrainer(
config=config, env="ray.rllib.examples.env.mbmpo_env.CartPoleWrapper"
)
for i in range(num_iterations):
results = trainer.train()
check_train_results(results)
print(results)
check_compute_single_action(trainer, include_prev_action_reward=False)
trainer.stop()
if __name__ == "__main__":
import pytest
import sys
sys.exit(pytest.main(["-v", __file__]))