Exemple #1
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **{
         "q_values": self.q_values,
     })
Exemple #2
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **self._extra_action_fetches)
Exemple #3
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"vf_preds": self.vf})
Exemple #4
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"behaviour_logits": self.model.outputs})
Exemple #5
0
 def extra_compute_action_fetches(self):
     out = {"behaviour_logits": self.model.outputs}
     if not self.config["vtrace"]:
         out["vf_preds"] = self.value_function
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **out)
Exemple #6
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self), **{
             SampleBatch.VF_PREDS: self.value_function,
             BEHAVIOUR_LOGITS: self.logits
         })
Exemple #7
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{SampleBatch.VF_PREDS: self.vf})
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self), **{
             "vf_preds": self.value_function,
             "logits": self.logits
         })
 def extra_compute_action_fetches(self):
     out = {"behaviour_logits": self.model.outputs}
     if not self.config["vtrace"]:
         out["vf_preds"] = self.value_function
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **out)
Exemple #10
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"behavior_logp": self.sampled_logp})
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self), **{
             "q_values": self.q_values,
         })
Exemple #12
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **{
         "vf_preds": self.value_function,
         "logits": self.logits
     })
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self),
         **{"vf_preds": self.vf})
Exemple #14
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{BEHAVIOUR_LOGITS: self.model.outputs})
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self),
         **{"behaviour_logits": self.model.outputs})