mirror of
https://github.com/wassname/ray.git
synced 2026-08-05 13:21:03 +08:00
Fix typo in examples/centralized_critic.py (#5943)
`opp_ops` should be `opp_obs`.
This commit is contained in:
committed by
Richard Liaw
parent
4d08d3c188
commit
d70abcfd70
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user