From 92cfeb635df96cb6fa9feff03c65a8127305ac15 Mon Sep 17 00:00:00 2001 From: Maximilian Ernestus Date: Tue, 19 Sep 2023 16:58:09 +0200 Subject: [PATCH] Replaces references to gym with references to gymnasium in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b02209..971c539 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ *seals*, the Suite of Environments for Algorithms that Learn Specifications, is a toolkit for evaluating specification learning algorithms, such as reward or imitation learning. The -environments are compatible with [Gym](https://github.com/openai/gym), but are designed +environments are compatible with [Gymnasium](https://gymnasium.farama.org/), but are designed to test algorithms that learn from user data, without requiring a procedurally specified reward function. @@ -35,7 +35,7 @@ To install the latest release from PyPI, run: pip install seals ``` -All *seals* environments are available in the Gym registry. Simply import it and then use as you +All *seals* environments are available in the Gymnasium registry. Simply import it and then use as you would with your usual RL or specification learning algroithm: ```python