Пример #1
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **{
         "q_values": self.q_values,
     })
Пример #2
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **self._extra_action_fetches)
Пример #3
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"vf_preds": self.vf})
Пример #4
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"behaviour_logits": self.model.outputs})
Пример #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)
Пример #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
         })
Пример #7
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{SampleBatch.VF_PREDS: self.vf})
Пример #8
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self), **{
             "vf_preds": self.value_function,
             "logits": self.logits
         })
Пример #9
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)
Пример #10
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{"behavior_logp": self.sampled_logp})
Пример #11
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self), **{
             "q_values": self.q_values,
         })
Пример #12
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self), **{
         "vf_preds": self.value_function,
         "logits": self.logits
     })
Пример #13
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self),
         **{"vf_preds": self.vf})
Пример #14
0
 def extra_compute_action_fetches(self):
     return dict(TFPolicyGraph.extra_compute_action_fetches(self),
                 **{BEHAVIOUR_LOGITS: self.model.outputs})
Пример #15
0
 def extra_compute_action_fetches(self):
     return dict(
         TFPolicyGraph.extra_compute_action_fetches(self),
         **{"behaviour_logits": self.model.outputs})