DataPredict

The Action Space, Simplified

An action space just means the set of actions that the AI could take for any given state. There are two types of action spaces:

Discrete Action Space

Discrete action space are where the AI could choose only one action from a set of actions that exists for a specific environment. For example:

Notice that you can only choose one action from a set of actions. More than one action cannot be performed at the same time.

Continuous Action Space

Continuous action space, on the other hand, are where the AI could choose different values for each of the actions that exists for a specific environment. For example:

As you can see, you can get the values for each of the actions. More than one action can be performed at the same time.

Choosing The Correct Algorithm For A Given Action Space

From the above, you can see that different types of action spaces have different types of properties. That also means that the way that our AI will have different way of learning things due for different properties. Because of how much mathematics are involved, we will not cover them any further.

What you will need to know instead that you will need to match the correct QuickSetup object and algorithm functions to use for a given action space type.

Action Space QuickSetup Object To Use Function To Use To Perform The Step Updates What Value Type Is Used To Update The Algorithm
Discrete CategoricalPolicy categoricalUpdate() A single action
Continuous DiagonalGaussianPolicy diagonalGaussianUpdate() An action vector containing all values for all actions

That’s all what you need to know for today!

Thank you very much for reading this tutorial. Have a nice day!