LiftedTrajectoryGames.jl

A neural network accelerated solver for mixed-strategy solutions of trajectory games. Do you even lift?
Author lassepe
Popularity
11 Stars
Updated Last
1 Year Ago
Started In
June 2022

LiftedTrajectoryGames

CI codecov License

A reference implementation of the lifted game solver presented in our RSS 2022 paper "Learning Mixed Strategies in Trajectory Games".

Please consult project website for more information on this project.

@inproceedings{peters2022rss,
    title     = {Learning Mixed Strategies in Trajectory Games},
    author    = {Peters, Lasse and Fridovich-Keil, David and Ferranti, Laura and Stachniss, Cyrill and Alonso-Mora, Javier and Laine, Forrest},
    booktitle = {Proc.~of Robotics: Science and Systems (RSS)},
    year      = {2022},
    url       = {https://arxiv.org/abs/2205.00291}
}

Teaser: Learning to solve a game of tag from scratch in receding-horizon self-play.

Installation

To install LiftedTrajectoryGames, simply add it via Julia's package manager from the REPL:

# hit `]` to enter "pkg"-mode of the REPL
pkg> add LiftedTrajectoryGames

Usage

LiftedTrajectoryGames uses TrajectoryGamesBase as an abstraction of the problem and solver interface for trajectory games. Please to refer to that package for documentation on the problem setup. Note that the lifted game solver requires differentiability of the game's costs and dynamics.

Solver Setup

For a game that meets those assumptions, you can construct a solver::LiftedTrajectoryGameSolver using the helper constructor that recovers the relevant solver parameters (network input/output dimensions etc.) from a given game::TrajectoryGame. Note that the solver construction may take a while as it compiles all the relevant functions and derivatives for acceleration of downstream solver invocations.

⚠️ Please refer to the docstrings of each type and function for more information. For example, type ?LiftedTrajectoryGameSolver in the REPL for more information on solver options.

using LiftedTrajectoryGames
using TrajectoryGamesBase
using TrajectoryGamesExamples

# place holder; replace with your actual game constructor
game = two_player_meta_tag()
planning_horizon = 20
# the number of "pure" trajectories to mix over for each player:
n_actions = [2 for _ in 1:num_players(game)]
solver = LiftedTrajectoryGameSolver(game, planning_horizon; n_actions)

Solver Invocation

Open-Loop Planning

Once you have set up the solver, you can invoke it for a given initial_state.

using BlockArrays: mortar
initial_state = (mortar([rand(4) for _ in 1:num_players(game)]) .- 0.5) * 4
# You will notice that the first invocation of this function is very slow because Julia has to compile a lot of code.
# After all the compilation is done, subsequent invocations of this method should be blazingly fast. (on the order of milliseconds).
strategy = solve_trajectory_game!(solver, game, initial_state)

The resulting mixed joint strategy can then be invoked on the state to compute controls for all players.

# A strategy may be time-varying. Therefore, we also have to hand in the time.
time = 1
controls = strategy(initial_state, time)

Receding-Horizon Planning

In practice, you may also wish to use the solver in the framework of model-predictive game play (MPGP), i.e., for receding-horizon invocations rather than the generation of open-loop plans. To this end, you can wrap the solver in a receding_horizon_strategy::TrajectoryGamesBase.RecedingHorizonStrategy.

receding_horizon_strategy = RecedingHorizonStrategy(; solver, game, turn_length = 5)

This strategy will invoke the solver on demand upon invocation for a given state and time, receding_horizon_strategy(state, time). Therefore, you can directly pass this receding_horizon_strategy to the TrajectoryGamesBase.rollout function for a receding-horizon online rollout:

number_of_simulation_steps = 500
simulation_steps = rollout(
    game.dynamics,
    receding_horizon_strategy,
    initial_state,
    number_of_simulation_steps;
    # here, we also record the strategy at each time step for visualization below
    get_info = (strategy, x, t) -> strategy.receding_horizon_strategy,
)

Visualization

TrajectoryGamesExamples additionally provides the function animate_sim_steps to visualize the resulting simulation_steps sequence using Makie.

# activate the GLMakie backend to render on a GPU-accelerated canvas.
# Loading this package may take a while.
using GLMakie
animate_sim_steps(
    game,
    simulation_steps;
    live = true, # slow down the renderering for live viewing
    framerate = 60,
    show_turn = true,
    filename = "sim_steps" # store the visualization at this (relative) path
)

Now you can watch the solver learning from scratch to solve the tag game. The resulting visualization should look something like the teaser video above (of course depending on you random seed).


⚠️ TODO:

  • explain learning settings