From d4556f36210be3f8cb53641be750b75ba002ac24 Mon Sep 17 00:00:00 2001 From: Ram Rachum Date: Wed, 1 Nov 2023 04:41:43 -0700 Subject: [PATCH] Fix formatting problem in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cfce1d1f..6689eac5 100644 --- a/README.md +++ b/README.md @@ -231,9 +231,9 @@ python -m pax.experiment +train_iters=1e3 +num_envs=10 ``` We currently support two major environments: `MatrixGames` and `CoinGame`. -``` For `MatrixGames`, we support the ability to specify your own payoff matrix either through the CLI or the `yaml` files. For example the common Iterated Prisoners Dilemma is: + ```bash python -m pax.experiment +experiment/ipd=ppo ++payoff="[[-2,-2], [0,-3], [-3,0], [-1,-1]]" ++wandb.group="testing" ```