From 4db196438ba8fa2044551264f6adbd5de0e92c12 Mon Sep 17 00:00:00 2001 From: Philipp Moritz Date: Fri, 31 Aug 2018 23:34:47 -0700 Subject: [PATCH] fix 'from ray.rllib import ppo' in doc (#2794) --- doc/source/rllib-env.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/rllib-env.rst b/doc/source/rllib-env.rst index 953c48005..6de076785 100644 --- a/doc/source/rllib-env.rst +++ b/doc/source/rllib-env.rst @@ -11,7 +11,7 @@ In the high-level agent APIs, environments are identified with string names. By import ray from ray.tune.registry import register_env - from ray.rllib import ppo + from ray.rllib.agents import ppo def env_creator(env_config): import gym