About 1,310,000 results
Open links in new tab
  1. Q-learning - Wikipedia

    is a reinforcement learning algorithm that trains an agent to assign values to its possible actions based on its current state, without requiring a model of the environment (model-free). It can handle …

  2. Q-Learning in Reinforcement Learning - GeeksforGeeks

    Oct 31, 2025 · Q-Learning is a popular model-free reinforcement learning algorithm that helps an agent learn how to make the best decisions by interacting with its environment.

  3. An Introduction to Q-Learning: A Tutorial For Beginners

    Oct 27, 2022 · In this tutorial, we will learn about Q-learning and understand why we need Deep Q-learning. Moreover, we will learn to create and train Q-learning algorithms from scratch using Numpy …

  4. The objective of Q-learning is to learn an optimal policy such that Q (s; a) = max Q (s; a) 8s; a, that maximises this expected return. We can evaluate Q for the optimal policy, by using the following …

  5. A Beginner’s Guide to Q-Learning: Understanding ... - Medium

    Oct 24, 2024 · What is Q-Learning? Q-learning is a value-based reinforcement learning algorithm. The goal of Q-learning is to learn the optimal action-selection policy for an agent interacting with an...

  6. A Gentle Introduction to Q-Learning

    Aug 5, 2025 · This article provides a gentle introduction to Q-learning, its principles, and the basic characteristics of its algorithms, presented in a clear and illustrative tone.

  7. Q-Learning - Online Tutorials Library

    Q-learning is a value-based reinforcement learning algorithm that enables models to iteratively learn and improve over time by taking the correct actions. While these correct actions are considered rewards, …