From 11f260b782381eb5063814800c52d3281347738a Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Wed, 4 Feb 2026 18:56:18 +0100 Subject: [PATCH] Update 2_6_1_Q-Learning_Basic.ipynb --- ml5/2_6_1_Q-Learning_Basic.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ml5/2_6_1_Q-Learning_Basic.ipynb b/ml5/2_6_1_Q-Learning_Basic.ipynb index 8a8f5e1..8704366 100644 --- a/ml5/2_6_1_Q-Learning_Basic.ipynb +++ b/ml5/2_6_1_Q-Learning_Basic.ipynb @@ -35,7 +35,7 @@ "# Introduction\n", "The purpose of this practice is to understand better Reinforcement Learning (RL) and, in particular, Q-Learning.\n", "\n", - "We are going to use [Gymnasium](https://gymnasium.farama.org/). Gymnasium is toolkit for developing and comparing RL algorithms. It is a fork of [Open AI Gym](https://www.gymlibrary.dev/). Take a loot at ther [website](https://github.com/Farama-Foundation/Gymnasium).\n", + "We are going to use [Gymnasium](https://gymnasium.farama.org/). Gymnasium is a toolkit for developing and comparing RL algorithms. It is a fork of [Open AI Gym](https://www.gymlibrary.dev/). Take a loot at ther [website](https://github.com/Farama-Foundation/Gymnasium).\n", "\n", "It implements [algorithm imitation](http://gym.openai.com/envs/#algorithmic), [classic control problems](https://gymnasium.farama.org/environments/classic_control/), [Atari games](https://gymnasium.farama.org/environments/atari/), [Box2D continuous control](https://gymnasium.farama.org/environments/box2d/), [robotics with MuJoCo, Multi-Joint dynamics with Contact](https://gymnasium.farama.org/environments/mujoco/), [simple text based environments](https://gymnasium.farama.org/environments/toy_text/), and [other problems](https://gymnasium.farama.org/environments/third_party_environments/).\n", "\n", @@ -64,7 +64,7 @@ "metadata": {}, "source": [ "## Environments\n", - "OpenGym provides a number of problems called *environments*. \n", + "OpenGym provides several problems called *environments*. \n", "\n", "Try 'LunarLander-v2' (or 'CartPole-v1', 'MountainCar-v0', etc.)." ] @@ -1328,7 +1328,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "The notebook is freely licensed under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", "\n", "© Carlos Á. Iglesias, Universidad Politécnica de Madrid." ]