mirror of
https://github.com/wassname/ray.git
synced 2026-07-16 11:21:10 +08:00
* re * wip * wip * a3c working * torch support * pg works * lint * rm v2 * consumer id * clean up pg * clean up more * fix python 2.7 * tf session management * docs * dqn wip * fix compile * dqn * apex runs * up * impotrs * ddpg * quotes * fix tests * fix last r * fix tests * lint * pass checkpoint restore * kwar * nits * policy graph * fix yapf * com * class * pyt * vectorization * update * test cpe * unit test * fix ddpg2 * changes * wip * args * faster test * common * fix * add alg option * batch mode and policy serving * multi serving test * todo * wip * serving test * doc async env * num envs * comments * thread * remove init hook * update * fix ppo * comments1 * fix * updates * add jenkins tests * fix * fix pytorch * fix * fixes * fix a3c policy * fix squeeze * fix trunc on apex * fix squeezing for real * update * remove horizon test for now * multiagent wip * update * fix race condition * fix ma * t * doc * st * wip * example * wip * working * cartpole * wip * batch wip * fix bug * make other_batches None default * working * debug * nit * warn * comments * fix ppo * fix obs filter * update * wip * tf * update * fix * cleanup * cleanup * spacing * model * fix * dqn * fix ddpg * doc * keep names * update * fix * com * docs * clarify model outputs * Update torch_policy_graph.py * fix obs filter * pass thru worker index * fix * rename * vlad torch comments * fix log action * debug name * fix lstm * remove unused ddpg net * remove conv net * revert lstm * wip * wip * cast * wip * works * fix a3c * works * lstm util test * doc * clean up * update * fix lstm check * move to end * fix sphinx * fix cmd * remove bad doc * envs * vec * doc prep * models * rl * alg * up * clarify * copy * async sa * fix * comments * fix a3c conf * tune lstm * fix reshape * fix * back to 16 * tuned a3c update * update * tuned * optional * merge * wip * fix up * move pg class * rename env * wip * update * tip * alg * readme * fix catalog * readme * doc * context * remove prep * comma * add env * link to paper * paper * update * rnn * update * wip * clean up ev creation * fix * fix * fix * fix lint * up * no comma * ma * Update run_multi_node_tests.sh * fix * sphinx is stupid * sphinx is stupid * clarify torch graph * no horizon * fix config * sb * Update test_optimizers.py
71 lines
1.9 KiB
Python
71 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
import numpy as np
|
|
import ray
|
|
|
|
from ray.rllib.agents.agent import get_agent_class
|
|
|
|
|
|
def get_mean_action(alg, obs):
|
|
out = []
|
|
for _ in range(2000):
|
|
out.append(float(alg.compute_action(obs)))
|
|
return np.mean(out)
|
|
|
|
|
|
ray.init(num_cpus=10)
|
|
|
|
CONFIGS = {
|
|
"ES": {"episodes_per_batch": 10, "timesteps_per_batch": 100,
|
|
"num_workers": 2},
|
|
"DQN": {},
|
|
"DDPG": {"noise_scale": 0.0, "timesteps_per_iteration": 100},
|
|
"PPO": {"num_sgd_iter": 5, "timesteps_per_batch": 1000, "num_workers": 2},
|
|
"A3C": {"num_workers": 1},
|
|
}
|
|
|
|
|
|
def test(use_object_store, alg_name, failures):
|
|
cls = get_agent_class(alg_name)
|
|
if alg_name == "DDPG":
|
|
alg1 = cls(config=CONFIGS[name], env="Pendulum-v0")
|
|
alg2 = cls(config=CONFIGS[name], env="Pendulum-v0")
|
|
else:
|
|
alg1 = cls(config=CONFIGS[name], env="CartPole-v0")
|
|
alg2 = cls(config=CONFIGS[name], env="CartPole-v0")
|
|
|
|
for _ in range(3):
|
|
res = alg1.train()
|
|
print("current status: " + str(res))
|
|
|
|
# Sync the models
|
|
if use_object_store:
|
|
alg2.restore_from_object(alg1.save_to_object())
|
|
else:
|
|
alg2.restore(alg1.save())
|
|
|
|
for _ in range(10):
|
|
if alg_name == "DDPG":
|
|
obs = np.random.uniform(size=3)
|
|
else:
|
|
obs = np.random.uniform(size=4)
|
|
a1 = get_mean_action(alg1, obs)
|
|
a2 = get_mean_action(alg2, obs)
|
|
print("Checking computed actions", alg1, obs, a1, a2)
|
|
if abs(a1 - a2) > .1:
|
|
failures.append((alg_name, [a1, a2]))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
failures = []
|
|
for use_object_store in [False, True]:
|
|
for name in ["ES", "DQN", "DDPG", "PPO", "A3C"]:
|
|
test(use_object_store, name, failures)
|
|
|
|
assert not failures, failures
|
|
print("All checkpoint restore tests passed!")
|