Off-policy Q-learning#

This example tries to reproduce the results from the linear MPC numerical experiment in [5], but in an off-polic setting. We are given an RL environment whose cost function is

\[L(s,a) = \frac{1}{2} \left( s^\top s + \frac{1}{2} a^2 + w^\top \max\{0, \underline{s} - s\} + w^\top \max\{0, s - \overline{s}\} \right)\]

where \(s\) is the state, \(a\) is the action, \(w\) is a weight vector, and \(\underline{s}\) and \(\overline{s}\) are the lower and upper bounds of the state, respectively. The dynamics of the real environment are

\[\begin{split}s_+ = \begin{bmatrix} 0.9 & 0.35 \\ 0 & 1.1 \end{bmatrix} s + \begin{bmatrix} 0.0813 \\ 0.2 \end{bmatrix} a + \begin{bmatrix} e \\ 0 \end{bmatrix}\end{split}\]

where \(e \sim \mathcal{U}(-0.1, 0)\). Given the state \(s_k\), the following MPC scheme is used to control the system

\[\begin{split}\begin{aligned} \min_{x_{0:N}, u_{0:N-1}, \sigma_{1:N}} \quad & V_0 + x_N^\top S x_N + \sum_{i=1}^{N}{ w^\top \sigma_i } \\ & + \sum_{i=0}^{N-1}{ \gamma^i \left( x_i^\top x_i + 0.5 u_i^2 + f^\top \begin{bmatrix} x_i \\ u_i \end{bmatrix} \right) } \\ \textrm{s.t.} \quad & x_0 = s_k \\ & x_{i+1} = A x_i + B u_i + b & i=0,\dots,N-1 \\ & \underline{s} + \underline{x} - \sigma_i \leq x_i \leq \overline{s} + \overline{x} + \sigma_i \quad & i=1,\dots,N \end{aligned}\end{split}\]

with \(\gamma = 0.9\), and the learnable parameters are

\[\theta = \left( V_0, \underline{x}, \overline{x}, b, f, A, B \right)\]

The parameters are initialized differently, and in particular, the prediction model of the MPC is initialized wrongly as

\[\begin{split}A = \begin{bmatrix} 1 & 0.25 \\ 0 & 1 \end{bmatrix}, \quad B = \begin{bmatrix} 0.0312 \\ 0.25 \end{bmatrix},\end{split}\]

and \(S\) is the solution to the corresponding discrete-time algebraic Riccati equation, i.e., computed with the wrong dynamics matrices. The task is simple: find a parametrization \(\theta\) such that the cost function is minimized. To solve it, we will employ a second-order LSTD Q-learning algorithm. However, we will train this agent with data generated in an off-policy fashion, i.e., generated by another controller.

import logging
from collections.abc import Callable, Iterable
from itertools import pairwise
from typing import Any, Optional

import casadi as cs
import gymnasium as gym
import numpy as np
import numpy.typing as npt
from csnlp import Nlp
from csnlp.wrappers import Mpc
from gymnasium.spaces import Box
from gymnasium.wrappers import TimeLimit

from mpcrl import Agent, LearnableParameter, LearnableParametersDict, LstdQLearningAgent
from mpcrl.optim import NewtonMethod
from mpcrl.util.control import dlqr
from mpcrl.wrappers.agents import Evaluate, Log, RecordUpdates
from mpcrl.wrappers.envs import MonitorEpisodes

Defining the environment#

First things first, we need to build the environment. We will use the gymnasium library to do so. The most important methods are gymnasium.Env.reset and gymnasium.Env.step, which will be called to reset the environment to its initial state and to step the dynamics and receive a realization of the reward signal, respectively. The environment is defined as a the following class.

class LtiSystem(gym.Env[npt.NDArray[np.floating], float]):
    """A simple discrete-time LTI system affected by uniform noise."""

    nx = 2  # number of states
    nu = 1  # number of inputs
    A = np.asarray([[0.9, 0.35], [0, 1.1]])  # state-space matrix A
    B = np.asarray([[0.0813], [0.2]])  # state-space matrix B
    x_bnd = (np.asarray([[0], [-1]]), np.asarray([[1], [1]]))  # bounds of state
    a_bnd = (-1, 1)  # bounds of control input
    w = np.asarray([[1e2], [1e2]])  # penalty weight for bound violations
    e_bnd = (-1e-1, 0)  # uniform noise bounds
    action_space = Box(*a_bnd, (nu,), np.float64)

    def reset(
        self,
        *,
        seed: Optional[int] = None,
        options: Optional[dict[str, Any]] = None,
    ) -> tuple[npt.NDArray[np.floating], dict[str, Any]]:
        """Resets the state of the LTI system."""
        super().reset(seed=seed, options=options)
        self.x = np.asarray([0, 0.15]).reshape(self.nx, 1)
        return self.x, {}

    def get_stage_cost(self, state: npt.NDArray[np.floating], action: float) -> float:
        """Computes the stage cost :math:`L(s,a)`."""
        lb, ub = self.x_bnd
        return (
            0.5
            * (
                np.square(state).sum()
                + 0.5 * action**2
                + self.w.T @ np.maximum(0, lb - state)
                + self.w.T @ np.maximum(0, state - ub)
            ).item()
        )

    def step(
        self, action: cs.DM
    ) -> tuple[npt.NDArray[np.floating], float, bool, bool, dict[str, Any]]:
        """Steps the LTI system."""
        action = float(action)
        x_new = self.A @ self.x + self.B * action
        x_new[0] += self.np_random.uniform(*self.e_bnd)
        r = self.get_stage_cost(self.x, action)
        self.x = x_new
        return x_new, r, False, False, {}

Defining the MPC controller#

The second component is the MPC controller. We’ll create a custom that, of course, inherits from csnlp.wrappers.Mpc. The implementation is as follows, and it is in line with the theory presented above.

class LinearMpc(Mpc[cs.SX]):
    """A simple linear MPC controller."""

    horizon = 10
    discount_factor = 0.9
    learnable_pars_init = {
        "V0": np.asarray(0.0),
        "x_lb": np.asarray([0, 0]),
        "x_ub": np.asarray([1, 0]),
        "b": np.zeros(LtiSystem.nx),
        "f": np.zeros(LtiSystem.nx + LtiSystem.nu),
        "A": np.asarray([[1, 0.25], [0, 1]]),
        "B": np.asarray([[0.0312], [0.25]]),
    }

    def __init__(self) -> None:
        N = self.horizon
        gamma = self.discount_factor
        w = LtiSystem.w
        nx, nu = LtiSystem.nx, LtiSystem.nu
        x_bnd, a_bnd = LtiSystem.x_bnd, LtiSystem.a_bnd
        nlp = Nlp[cs.SX]()
        super().__init__(nlp, N)

        # parameters
        V0 = self.parameter("V0")
        x_lb = self.parameter("x_lb", (nx,))
        x_ub = self.parameter("x_ub", (nx,))
        b = self.parameter("b", (nx, 1))
        f = self.parameter("f", (nx + nu, 1))
        A = self.parameter("A", (nx, nx))
        B = self.parameter("B", (nx, nu))

        # variables (state, action, slack)
        x, _ = self.state("x", nx, bound_initial=False)
        u, _ = self.action("u", nu, lb=a_bnd[0], ub=a_bnd[1])
        s, _, _ = self.variable("s", (nx, N), lb=0)

        # dynamics
        self.set_affine_dynamics(A, B, c=b)

        # other constraints
        self.constraint("x_lb", x_bnd[0] + x_lb - s, "<=", x[:, 1:])
        self.constraint("x_ub", x[:, 1:], "<=", x_bnd[1] + x_ub + s)

        # objective
        A_init, B_init = self.learnable_pars_init["A"], self.learnable_pars_init["B"]
        S = cs.DM(dlqr(A_init, B_init, 0.5 * np.eye(nx), 0.25 * np.eye(nu))[1])
        gammapowers = cs.DM(gamma ** np.arange(N)).T
        self.minimize(
            V0
            + cs.bilin(S, x[:, -1])
            + cs.sum2(f.T @ cs.vertcat(x[:, :-1], u))
            + 0.5
            * cs.sum2(
                gammapowers * (cs.sum1(x[:, :-1] ** 2) + 0.5 * cs.sum1(u**2) + w.T @ s)
            )
        )

        # solver
        opts = {
            "expand": True,
            "print_time": False,
            "bound_consistency": True,
            "calc_lam_x": True,
            "calc_lam_p": False,
            "fatrop": {"max_iter": 500, "print_level": 0},
        }
        self.init_solver(opts, solver="fatrop", type="nlp")

Rollout generation#

Since we are learning in an off-policy fashion, we need to have a mechanism to generate rollout data by simulating another arbitrary policy. To this end, we can employ a non-learning agent that uses the nominal MPC controller.

def get_rollout_generator(
    rollout_seed: int,
) -> Callable[[int], Iterable[tuple[np.ndarray, float, float, np.ndarray]]]:
    """Returns a function used to generates rollout SARS sequences by employing a
    nominal MPC agent."""
    nominal_agent = Agent(LinearMpc(), LinearMpc.learnable_pars_init.copy())

    def _generate_rollout(n):
        # run the nominal agent on the environment once
        env = MonitorEpisodes(TimeLimit(LtiSystem(), 100))
        nominal_agent.evaluate(env, episodes=1, seed=rollout_seed + n)

        # transform the collected env data into a SARS sequence
        S, A, R = (
            env.observations[0].squeeze(),
            env.actions[0].squeeze(),
            env.rewards[0],
        )
        return ((s, a, r, s_next) for (s, s_next), a, r in zip(pairwise(S), A, R))

    return _generate_rollout

Simulation#

So far, we have only defined the classes for the environment, the MPC controller, and the off-policy data generation. Now, it is time to integrate these and run the simulation. This is comprised of multiple steps, which are detailed below.

  1. We instantiate the MPC controller and define its learnable parameters.

  2. We instantiate the Q-learning agent. We pass different options to it, such as the update strategy, the optimizer, the Hessian type, etc. For plotting purposes, it is also wrapped such that the updated parameters are recorded. We also log the progress of the simulation. Additionally, we evaluate the performance of the agent periodically to monitor its progress (since it is trained from offline data).

  3. We define the rollout generator based on the nominal MPC agent.

  4. We run the simulation. Under the hood, the agent will sequentially collect data from the other policy and update the parameters of the MPC controller.

  5. Finally, we plot the results. The first plot shows the TD error and the periodic evaluations of the learned policy. The second plot shows how each learnable parameter evolves over time.

if __name__ == "__main__":
    # now build the MPC and the dict of learnable parameters
    seed = 69
    mpc = LinearMpc()
    learnable_pars = LearnableParametersDict(
        (
            LearnableParameter(name, val.shape, val)
            for name, val in mpc.learnable_pars_init.items()
        )
    )

    # build and wrap appropriately the agent
    agent = Evaluate(
        Log(
            RecordUpdates(
                LstdQLearningAgent(
                    mpc=mpc,
                    learnable_parameters=learnable_pars,
                    discount_factor=mpc.discount_factor,
                    update_strategy=1,
                    optimizer=NewtonMethod(learning_rate=5e-2),
                    hessian_type="approx",
                    record_td_errors=True,
                    remove_bounds_on_initial_action=True,
                )
            ),
            level=logging.DEBUG,
            log_frequencies={"on_episode_end": 1},
        ),
        eval_env=TimeLimit(LtiSystem(), 100),
        hook="on_episode_end",
        frequency=10,
        n_eval_episodes=5,
        seed=seed,
    )

    # before training, let's create a nominal non-learning agent which will be used to
    # generate expert rollout data. This data will then be used to train the off-policy
    # q-learning agent.
    generate_rollout = get_rollout_generator(rollout_seed=69)

    # finally, we can launch the off-policy training
    n_rollouts = 100
    agent.train_offpolicy(
        episode_rollouts=(generate_rollout(n) for n in range(n_rollouts)), seed=seed
    )
    eval_returns = np.asarray(agent.eval_returns)

    # plot the results
    import matplotlib.pyplot as plt

    _, axs = plt.subplots(2, 1, constrained_layout=True)
    eval_returns_avg = eval_returns.mean(1)
    eval_returns_std = eval_returns.std(1)
    evals = np.arange(1, eval_returns.shape[0] + 1)
    axs[0].plot(agent.td_errors, "o", markersize=1)
    axs[0].set_ylabel("Time steps")
    axs[0].set_ylabel(r"$\tau$")
    patch = axs[1].fill_between(
        evals,
        eval_returns_avg - eval_returns_std,
        eval_returns_avg + eval_returns_std,
        alpha=0.3,
    )
    axs[1].plot(evals, eval_returns_avg, color=patch.get_facecolor())
    axs[1].set_ylabel("Evaluations")
    axs[1].set_ylabel(r"$\sum L$")

    _, axs = plt.subplots(3, 2, constrained_layout=True, sharex=True)
    updates_history = {k: np.asarray(v) for k, v in agent.updates_history.items()}
    axs[0, 0].plot(updates_history["b"])
    axs[0, 1].plot(np.stack([updates_history[n][:, 0] for n in ("x_lb", "x_ub")], -1))
    axs[1, 0].plot(updates_history["f"])
    axs[1, 1].plot(updates_history["V0"])
    axs[2, 0].plot(updates_history["A"].reshape(-1, 4))
    axs[2, 1].plot(updates_history["B"].squeeze())
    axs[0, 0].set_ylabel("$b$")
    axs[0, 1].set_ylabel("$x_1$")
    axs[1, 0].set_ylabel("$f$")
    axs[1, 1].set_ylabel("$V_0$")
    axs[2, 0].set_ylabel("$A$")
    axs[2, 1].set_ylabel("$B$")
    plt.show()
  • q learning offpolicy
  • q learning offpolicy
LstdQLearningAgent0@2025-10-17,07:17:46> training of off-policy started.
LstdQLearningAgent0@2025-10-17,07:17:47> episode 0 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:48> episode 1 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:49> episode 2 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:49> episode 3 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:50> episode 4 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:51> episode 5 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:52> episode 6 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:53> episode 7 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:53> episode 8 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:54> episode 9 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:54> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:17:54> episode 0 ended with rewards=1138.362.
LstdQLearningAgent0@2025-10-17,07:17:55> episode 1 ended with rewards=1113.921.
LstdQLearningAgent0@2025-10-17,07:17:55> episode 2 ended with rewards=1092.150.
LstdQLearningAgent0@2025-10-17,07:17:55> episode 3 ended with rewards=1155.804.
LstdQLearningAgent0@2025-10-17,07:17:55> episode 4 ended with rewards=1169.682.
LstdQLearningAgent0@2025-10-17,07:17:55> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[1138.362 1113.921 1092.15  1155.804 1169.682].
LstdQLearningAgent0@2025-10-17,07:17:56> episode 10 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:57> episode 11 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:58> episode 12 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:59> episode 13 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:17:59> episode 14 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:00> episode 15 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:01> episode 16 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:02> episode 17 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:03> episode 18 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:03> episode 19 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:03> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:04> episode 0 ended with rewards=628.208.
LstdQLearningAgent0@2025-10-17,07:18:04> episode 1 ended with rewards=614.258.
LstdQLearningAgent0@2025-10-17,07:18:04> episode 2 ended with rewards=602.978.
LstdQLearningAgent0@2025-10-17,07:18:04> episode 3 ended with rewards=640.030.
LstdQLearningAgent0@2025-10-17,07:18:05> episode 4 ended with rewards=633.223.
LstdQLearningAgent0@2025-10-17,07:18:05> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[628.208 614.258 602.978 640.03  633.223].
LstdQLearningAgent0@2025-10-17,07:18:05> episode 20 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:06> episode 21 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:07> episode 22 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:08> episode 23 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:09> episode 24 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:09> episode 25 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:10> episode 26 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:11> episode 27 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:12> episode 28 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:13> episode 29 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:13> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:13> episode 0 ended with rewards=551.667.
LstdQLearningAgent0@2025-10-17,07:18:13> episode 1 ended with rewards=576.464.
LstdQLearningAgent0@2025-10-17,07:18:13> episode 2 ended with rewards=560.342.
LstdQLearningAgent0@2025-10-17,07:18:14> episode 3 ended with rewards=583.437.
LstdQLearningAgent0@2025-10-17,07:18:14> episode 4 ended with rewards=574.812.
LstdQLearningAgent0@2025-10-17,07:18:14> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[551.667 576.464 560.342 583.437 574.812].
LstdQLearningAgent0@2025-10-17,07:18:15> episode 30 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:16> episode 31 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:16> episode 32 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:17> episode 33 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:18> episode 34 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:19> episode 35 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:20> episode 36 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:20> episode 37 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:21> episode 38 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:22> episode 39 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:22> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:22> episode 0 ended with rewards=518.479.
LstdQLearningAgent0@2025-10-17,07:18:23> episode 1 ended with rewards=523.495.
LstdQLearningAgent0@2025-10-17,07:18:23> episode 2 ended with rewards=520.251.
LstdQLearningAgent0@2025-10-17,07:18:23> episode 3 ended with rewards=505.649.
LstdQLearningAgent0@2025-10-17,07:18:23> episode 4 ended with rewards=497.972.
LstdQLearningAgent0@2025-10-17,07:18:23> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[518.479 523.495 520.251 505.649 497.972].
LstdQLearningAgent0@2025-10-17,07:18:24> episode 40 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:25> episode 41 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:26> episode 42 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:27> episode 43 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:27> episode 44 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:28> episode 45 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:29> episode 46 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:30> episode 47 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:31> episode 48 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:31> episode 49 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:31> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:32> episode 0 ended with rewards=461.194.
LstdQLearningAgent0@2025-10-17,07:18:32> episode 1 ended with rewards=466.293.
LstdQLearningAgent0@2025-10-17,07:18:32> episode 2 ended with rewards=475.862.
LstdQLearningAgent0@2025-10-17,07:18:33> episode 3 ended with rewards=444.886.
LstdQLearningAgent0@2025-10-17,07:18:33> episode 4 ended with rewards=466.484.
LstdQLearningAgent0@2025-10-17,07:18:33> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[461.194 466.293 475.862 444.886 466.484].
LstdQLearningAgent0@2025-10-17,07:18:34> episode 50 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:34> episode 51 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:35> episode 52 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:36> episode 53 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:37> episode 54 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:38> episode 55 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:39> episode 56 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:39> episode 57 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:40> episode 58 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:41> episode 59 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:41> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:41> episode 0 ended with rewards=504.932.
LstdQLearningAgent0@2025-10-17,07:18:42> episode 1 ended with rewards=493.982.
LstdQLearningAgent0@2025-10-17,07:18:42> episode 2 ended with rewards=470.575.
LstdQLearningAgent0@2025-10-17,07:18:42> episode 3 ended with rewards=470.326.
LstdQLearningAgent0@2025-10-17,07:18:42> episode 4 ended with rewards=483.275.
LstdQLearningAgent0@2025-10-17,07:18:42> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[504.932 493.982 470.575 470.326 483.275].
LstdQLearningAgent0@2025-10-17,07:18:43> episode 60 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:44> episode 61 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:45> episode 62 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:46> episode 63 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:46> episode 64 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:47> episode 65 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:48> episode 66 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:49> episode 67 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:50> episode 68 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:51> episode 69 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:51> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:18:51> episode 0 ended with rewards=424.248.
LstdQLearningAgent0@2025-10-17,07:18:51> episode 1 ended with rewards=457.268.
LstdQLearningAgent0@2025-10-17,07:18:51> episode 2 ended with rewards=471.862.
LstdQLearningAgent0@2025-10-17,07:18:52> episode 3 ended with rewards=461.686.
LstdQLearningAgent0@2025-10-17,07:18:52> episode 4 ended with rewards=461.764.
LstdQLearningAgent0@2025-10-17,07:18:52> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[424.248 457.268 471.862 461.686 461.764].
LstdQLearningAgent0@2025-10-17,07:18:53> episode 70 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:54> episode 71 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:54> episode 72 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:55> episode 73 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:56> episode 74 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:57> episode 75 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:58> episode 76 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:59> episode 77 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:18:59> episode 78 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:00> episode 79 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:00> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:19:01> episode 0 ended with rewards=421.913.
LstdQLearningAgent0@2025-10-17,07:19:01> episode 1 ended with rewards=416.705.
LstdQLearningAgent0@2025-10-17,07:19:01> episode 2 ended with rewards=429.069.
LstdQLearningAgent0@2025-10-17,07:19:01> episode 3 ended with rewards=410.589.
LstdQLearningAgent0@2025-10-17,07:19:02> episode 4 ended with rewards=422.852.
LstdQLearningAgent0@2025-10-17,07:19:02> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[421.913 416.705 429.069 410.589 422.852].
LstdQLearningAgent0@2025-10-17,07:19:02> episode 80 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:03> episode 81 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:04> episode 82 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:05> episode 83 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:06> episode 84 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:07> episode 85 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:07> episode 86 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:08> episode 87 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:09> episode 88 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:10> episode 89 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:10> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:19:10> episode 0 ended with rewards=519.615.
LstdQLearningAgent0@2025-10-17,07:19:10> episode 1 ended with rewards=498.124.
LstdQLearningAgent0@2025-10-17,07:19:11> episode 2 ended with rewards=525.081.
LstdQLearningAgent0@2025-10-17,07:19:11> episode 3 ended with rewards=452.222.
LstdQLearningAgent0@2025-10-17,07:19:11> episode 4 ended with rewards=495.775.
LstdQLearningAgent0@2025-10-17,07:19:11> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[519.615 498.124 525.081 452.222 495.775].
LstdQLearningAgent0@2025-10-17,07:19:12> episode 90 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:13> episode 91 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:14> episode 92 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:15> episode 93 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:15> episode 94 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:16> episode 95 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:17> episode 96 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:18> episode 97 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:19> episode 98 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:20> episode 99 ended with rewards=nan.
LstdQLearningAgent0@2025-10-17,07:19:20> validation of <TimeLimit<LtiSystem instance>> started.
LstdQLearningAgent0@2025-10-17,07:19:20> episode 0 ended with rewards=401.690.
LstdQLearningAgent0@2025-10-17,07:19:20> episode 1 ended with rewards=412.556.
LstdQLearningAgent0@2025-10-17,07:19:20> episode 2 ended with rewards=391.924.
LstdQLearningAgent0@2025-10-17,07:19:21> episode 3 ended with rewards=375.368.
LstdQLearningAgent0@2025-10-17,07:19:21> episode 4 ended with rewards=405.351.
LstdQLearningAgent0@2025-10-17,07:19:21> validation of <TimeLimit<LtiSystem instance>> concluded with returns=[401.69  412.556 391.924 375.368 405.351].
LstdQLearningAgent0@2025-10-17,07:19:21> training of off-policy concluded with returns=[].

Total running time of the script: (1 minutes 35.526 seconds)

Estimated memory usage: 213 MB

Gallery generated by Sphinx-Gallery