示例#1
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicy.extra_compute_action_fetches(self),
                 **self._extra_action_fetches)
示例#2
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicy.extra_compute_action_fetches(self),
                 **{BEHAVIOUR_LOGITS: self.model.outputs})
示例#3
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicy.extra_compute_action_fetches(self), **{
             "q_values": self.q_values,
         })
示例#4
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicy.extra_compute_action_fetches(self),
                 **{SampleBatch.VF_PREDS: self.vf})