From 7558bbe68ddc452f20697be83f838c95c7a541e9 Mon Sep 17 00:00:00 2001 From: aiueola Date: Mon, 24 Jul 2023 09:09:47 +0900 Subject: [PATCH] update FAQs --- FrequentlyAskedQuestions.md | 6 +++--- docs/documentation/frequently_asked_questions.rst | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/FrequentlyAskedQuestions.md b/FrequentlyAskedQuestions.md index 9481d40..2cb9640 100644 --- a/FrequentlyAskedQuestions.md +++ b/FrequentlyAskedQuestions.md @@ -28,9 +28,9 @@ Q. xxx environment does not work on d3rlpy, which is used for model training. Ho A. A. Both `scope-rl>=0.2.1` and `d3rlpy>=2.0.2` supports compatibility with `gym>=0.26.0` and `gymnasium` environments. The source is available in the `main` branch. -If you want to use the older interface of `d3rlpy`, make sure to use `scope-rl==0.1.2` and `d3rlpy==1.1.1`. Then, please use `OldGymAPIWrapper` provided in `scope_rl/utils.py` to enable the use of d3rlpy. The source is available in the `depreciated` branch. +If you want to use the older interface of `d3rlpy`, make sure to use `scope-rl==0.1.3` and `d3rlpy==1.1.1`. Then, please use `OldGymAPIWrapper` provided in `scope_rl/utils.py` to enable the use of d3rlpy. The source is available in the `depreciated` branch. ```Python from scope_rl.utils import OldGymAPIWrapper -env = gym.make("xxx_v0") # compatible with gym>=0.26.2 and SCOPE-RL -env_ = OldGymAPIWrapper(env) # compatible with gym<0.26.2 and d3rlpy +env = gym.make("xxx_v0") # compatible with gym>=0.26.2 and scope-rl==0.1.3 +env_ = OldGymAPIWrapper(env) # compatible with gym<0.26.2 and d3rlpy==1.1.1 ``` diff --git a/docs/documentation/frequently_asked_questions.rst b/docs/documentation/frequently_asked_questions.rst index 8e93486..63743b9 100644 --- a/docs/documentation/frequently_asked_questions.rst +++ b/docs/documentation/frequently_asked_questions.rst @@ -36,12 +36,12 @@ To solve this incompatibility, please use `NewGymAPIWrapper` provided in `scope_ A. Both `scope-rl>=0.2.1` and `d3rlpy>=2.0.2` supports compatibility with `gym>=0.26.0` and `gymnasium` environments. The source is available in the `main` branch. -If you want to use the older interface of `d3rlpy`, make sure to use `scope-rl==0.1.2` and `d3rlpy==1.1.1`. Then, please use `OldGymAPIWrapper` provided in `scope_rl/utils.py` to enable the use of d3rlpy. The source is available in the `depreciated` branch. +If you want to use the older interface of `d3rlpy`, make sure to use `scope-rl==0.1.3` and `d3rlpy==1.1.1`. Then, please use `OldGymAPIWrapper` provided in `scope_rl/utils.py` to enable the use of d3rlpy. The source is available in the `depreciated` branch. .. code-block:: Python from scope_rl.utils import OldGymAPIWrapper - env = gym.make("xxx_v0") # compatible with gym>=0.26.2 and scope-rl==0.1.2 + env = gym.make("xxx_v0") # compatible with gym>=0.26.2 and scope-rl==0.1.3 env_ = OldGymAPIWrapper(env) # compatible with gym<0.26.2 and d3rlpy==1.1.1