Also known as: Tabular Q learning
Tabular Q-learning is a reinforcement learning method that stores Q-values in a table for each state-action pair. It is suitable for environments with discrete and manageable state and action spaces.
In reinforcement learning, implementing Q-learning by using a table to store the Q-functions for every combination of state and action.