Which learning style takes actions for rewards instead of studying labeled examples?
Under the Markov assumption, the next state can depend on the whole history of past states.
Circle one: True False
What is the return in a decision problem?
In a Markov model, the next state can depend on the whole history of where the agent has been, not just the current state. True or false?
Circle one: True False
An agent earns reward 4 now and reward 2 next step, with discount 0.5. What is the discounted return?
Answer: ______________
What does a small discount factor assume about the future?
A tiny robot world has two states: Sunny and Rainy. From Sunny, the chance of staying Sunny tomorrow is 0.8. From Rainy, the chance of moving to Sunny tomorrow is 0.5. Today it is Sunny for sure, so the state vector is [1, 0]. What is the probability that tomorrow is Sunny?
Today is Sunny for sure, so the vector is [1, 0]. Sunny stays Sunny with chance 0.8. What is the chance tomorrow is Sunny?
How do you repair that two-rainy-days task so the assumption holds again?
Rain falls only after two rainy days in a row. Why can Sunny and Rainy alone not model this?