En matemáticas, la palabra operador puede referirse a varios conceptos distintos pero relacionados. Un operador se puede definir como una función entre dos espacios vectoriales, se puede definir como una función donde el dominio y el codominio son iguales, o se puede definir como una función desde funciones (que son vectores) a otras funciones (para ejemplo, el operador diferencial ), es decir, una función de orden superior (si está familiarizado con la programación funcional).
¿Cuál es el operador de Bellman en el aprendizaje por refuerzo (RL)? ¿Por qué lo necesitamos? ¿Cómo se relaciona el operador de Bellman con las ecuaciones de Bellman en RL?
Respuestas:
La notación que usaré es de dos conferencias diferentes de David Silver y también está informada por estas diapositivas .
La ecuación de Bellman esperada esvπ(s)=∑a∈Aπ(a|s)(Ras+γ∑s′∈SPass′vπ(s′))(1)
Si dejamosPπss′=∑a∈Aπ(a|s)Pass′(2)
y
Rπs=∑a∈Aπ(a|s)Ras(3)
entonces podemos reescribir (1) como
Esto se puede escribir en forma de matriz
Or, more compactly,
Notice that both sides of(6) are n -dimensional vectors. Here n=|S| is the size of the state space. We can then define an operator Tπ:Rn→Rn as
for anyv∈Rn . This is the expected Bellman operator.
Similarly, you can rewrite the Bellman optimality equation
as the Bellman optimality operator
The Bellman operators are "operators" in that they are mappings from one point to another within the vector space of state values,Rn .
Rewriting the Bellman equations as operators is useful for proving that certain dynamic programming algorithms (e.g. policy iteration, value iteration) converge to a unique fixed point. This usefulness comes in the form of a body of existing work in operator theory, which allows us to make use of special properties of the Bellman operators.
Specifically, the fact that the Bellman operators are contractions gives the useful results that, for any policyπ and any initial vector v ,
wherevπ is the value of policy π and v∗ is the value of an optimal policy π∗ . The proof is due to the contraction mapping theorem.
fuente