State–action–reward–state–action

{{Short description|Machine learning algorithm}}

{{Other uses|Sarsa (disambiguation){{!}}Sarsa}}

{{Machine learning|Reinforcement learning}}

State–action–reward–state–action (SARSA) is an algorithm for learning a Markov decision process policy, used in the reinforcement learning area of machine learning. It was proposed by Rummery and Niranjan in a technical note[http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.17.2539&rep=rep1&type=pdf Online Q-Learning using Connectionist Systems" by Rummery & Niranjan (1994)] with the name "Modified Connectionist Q-Learning" (MCQ-L). The alternative name SARSA, proposed by Rich Sutton, was only mentioned as a footnote.

This name reflects the fact that the main function for updating the Q-value depends on the current state of the agent "S1", the action the agent chooses "A1", the reward "R2" the agent gets for choosing this action, the state "S2" that the agent enters after taking that action, and finally the next action "A2" the agent chooses in its new state. The acronym for the quintuple (St, At, Rt+1, St+1, At+1) is SARSA.[http://incompleteideas.net/book/ebook/node64.html Reinforcement Learning: An Introduction Richard S. Sutton and Andrew G. Barto (chapter 6.4)] Some authors use a slightly different convention and write the quintuple (St, At, Rt, St+1, At+1), depending on which time step the reward is formally assigned. The rest of the article uses the former convention.

Algorithm

:Q^{new}(S_t, A_t) \leftarrow (1 - \alpha) Q(S_t,A_t) + \alpha \, [R_{t+1} + \gamma \, Q(S_{t+1}, A_{t+1})]

A SARSA agent interacts with the environment and updates the policy based on actions taken, hence this is known as an on-policy learning algorithm. The Q value for a state-action is updated by an error, adjusted by the learning rate α. Q values represent the possible reward received in the next time step for taking action a in state s, plus the discounted future reward received from the next state-action observation.

Watkin's Q-learning updates an estimate of the optimal state-action value function Q^* based on the maximum reward of available actions. While SARSA learns the Q values associated with taking the policy it follows itself, Watkin's Q-learning learns the Q values associated with taking the optimal policy while following an exploration/exploitation policy.

Some optimizations of Watkin's Q-learning may be applied to SARSA.{{Cite journal|last1=Wiering|first1=Marco|last2=Schmidhuber|first2=Jürgen|date=1998-10-01|title=Fast Online Q(λ)|url=https://link.springer.com/content/pdf/10.1023%2FA%3A1007562800292.pdf|journal=Machine Learning|language=en|volume=33|issue=1|pages=105–115|doi=10.1023/A:1007562800292|s2cid=8358530|issn=0885-6125|doi-access=free}}

Hyperparameters

= Learning rate (alpha)=

The learning rate determines to what extent newly acquired information overrides old information. A factor of 0 will make the agent not learn anything, while a factor of 1 would make the agent consider only the most recent information.

= Discount factor (gamma) =

The discount factor determines the importance of future rewards. A discount factor of 0 makes the agent "opportunistic", or "myopic", e.g.,{{cite web |title=Arguments against myopic training |date=9 July 2020 |url=https://www.lesswrong.com/posts/GqxuDtZvfgL2bEQ5v/arguments-against-myopic-training |access-date=17 May 2023 |language=en}} by only considering current rewards, while a factor approaching 1 will make it strive for a long-term high reward. If the discount factor meets or exceeds 1, the Q values may diverge.

= Initial conditions ({{math|''Q''(''S''<sub>0</sub>, ''A''<sub>0</sub>)}}) =

Since SARSA is an iterative algorithm, it implicitly assumes an initial condition before the first update occurs. A high (infinite) initial value, also known as "optimistic initial conditions",{{Cite web|url=http://incompleteideas.net/book/ebook/node21.html|title=2.7 Optimistic Initial Values|website=incompleteideas.net|access-date=2018-02-28}} can encourage exploration: no matter what action takes place, the update rule causes it to have higher values than the other alternative, thus increasing their choice probability. In 2013 it was suggested that the first reward r could be used to reset the initial conditions. According to this idea, the first time an action is taken the reward is used to set the value of Q. This allows immediate learning in case of fixed deterministic rewards. This resetting-of-initial-conditions (RIC) approach seems to be consistent with human behavior in repeated binary choice experiments.{{cite journal | last1 = Shteingart | first1 = H | last2 = Neiman | first2 = T | last3 = Loewenstein | first3 = Y | date = May 2013 | title = The Role of First Impression in Operant Learning | journal = J Exp Psychol Gen | volume = 142 | issue = 2| pages = 476–88 | doi = 10.1037/a0029550 | pmid = 22924882 | url = http://ratio.huji.ac.il/sites/default/files/publications/dp626.pdf }}

See also

References

{{reflist}}

{{Artificial intelligence navbox}}

{{DEFAULTSORT:State-action-reward-state-action}}

Category:Machine learning algorithms