From 53712d2ef71d746f90c4ad025724774722a015c6 Mon Sep 17 00:00:00 2001 From: Dean Wampler Date: Thu, 11 Jun 2020 01:34:35 -0500 Subject: [PATCH] Fix typo in docs for LinearDiscreteEnv (#8891) --- rllib/contrib/bandits/envs/discrete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rllib/contrib/bandits/envs/discrete.py b/rllib/contrib/bandits/envs/discrete.py index b0f2f4277..5342df3b3 100644 --- a/rllib/contrib/bandits/envs/discrete.py +++ b/rllib/contrib/bandits/envs/discrete.py @@ -15,7 +15,7 @@ class LinearDiscreteEnv(gym.Env): """Samples data from linearly parameterized arms. The reward for context X and arm i is given by X^T * theta_i, for some - latent set of parameters {theta_i : i = 1, ..., k}. The betas are sampled + latent set of parameters {theta_i : i = 1, ..., k}. The thetas are sampled uniformly at random, the contexts are Gaussian, and Gaussian noise is added to the rewards.