Chapter 4. Reinforcement Learning: Exercise#
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
1. Implement SARSA
2. Implement Actor-Critic
3. Implement an environment of your interested and test RL algorithms.
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
1. Implement SARSA
2. Implement Actor-Critic
3. Implement an environment of your interested and test RL algorithms.