-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Description of the problem
Since, RL aims to solve MDPs i.e., Markov Decision Processes so our first aim should be decide on their representation. It should be designed in such a way that RL algorithms can easily use these representations for finding optimal/sub-optimal solutions.
MDPs have the following elements,
- State
- Actions
- Transition Probabilities
- Transition Rewards
- Policy
- Performance Metric
SMDPs have an additional element called Time of Transition.
How each of the above elements can be represented? One idea can be to use a class for encapsulating the above elements.