Fix typo in examples/centralized_critic.py (#5943)

`opp_ops` should be `opp_obs`.
This commit is contained in:
Stefan Otte
2019-10-17 08:42:50 -07:00
committed by Richard Liaw
parent 4d08d3c188
commit d70abcfd70
+1 -1
View File
@@ -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")