From d70abcfd702077f3406110071f93aa541a665153 Mon Sep 17 00:00:00 2001 From: Stefan Otte Date: Thu, 17 Oct 2019 17:42:50 +0200 Subject: [PATCH] Fix typo in examples/centralized_critic.py (#5943) `opp_ops` should be `opp_obs`. --- rllib/examples/centralized_critic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rllib/examples/centralized_critic.py b/rllib/examples/centralized_critic.py index d793adbf1..90f704046 100644 --- a/rllib/examples/centralized_critic.py +++ b/rllib/examples/centralized_critic.py @@ -57,7 +57,7 @@ class CentralizedCriticModel(TFModelV2): num_outputs, model_config, name) self.register_variables(self.model.variables()) - # Central VF maps (obs, opp_ops, opp_act) -> vf_pred + # Central VF maps (obs, opp_obs, opp_act) -> vf_pred obs = tf.keras.layers.Input(shape=(6, ), name="obs") opp_obs = tf.keras.layers.Input(shape=(6, ), name="opp_obs") opp_act = tf.keras.layers.Input(shape=(2, ), name="opp_act")