Reward Model directory.
Sub-directory with the implementation of the different reward models.
A reward model is a function defined on the state and action
spaces
AM: S x A -> Reals
describing the reward received when executing a given action from a
given state.
The implementations in this directory contemplate the case of S and A to
be discrete of continuous spaces.
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 % Reward Model directory.
0002 %
0003 % Sub-directory with the implementation of the different reward models.
0004 % A reward model is a function defined on the state and action
0005 % spaces
0006 % AM: S x A -> Reals
0007 % describing the reward received when executing a given action from a
0008 % given state.
0009 %
0010 % The implementations in this directory contemplate the case of S and A to
0011 % be discrete of continuous spaces.
0012 %