Searched refs:compute_full_loss (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | nn_test.py | 146 def _log_poisson_loss(self, x, z, compute_full_loss=False): argument 148 if compute_full_loss: 158 y_np = self._log_poisson_loss(x_np, z_np, compute_full_loss=False) 159 y_np_stirling = self._log_poisson_loss(x_np, z_np, compute_full_loss=True) 160 y_tf = nn_impl.log_poisson_loss(z_np, x_np, compute_full_loss=False) 161 y_tf_stirling = nn_impl.log_poisson_loss(z_np, x_np, compute_full_loss=True) 175 y_tf = nn_impl.log_poisson_loss(z_np, x_tf, compute_full_loss=False) 177 z_np, x_tf, compute_full_loss=True)
|
D | nn_impl.py | 43 def log_poisson_loss(targets, log_input, compute_full_loss=False, name=None): argument 92 if compute_full_loss:
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.nn.pbtxt | 197 …argspec: "args=[\'targets\', \'log_input\', \'compute_full_loss\', \'name\'], varargs=None, keywor…
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.nn.pbtxt | 241 …argspec: "args=[\'targets\', \'log_input\', \'compute_full_loss\', \'name\'], varargs=None, keywor…
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
D | head.py | 587 loss = nn.log_poisson_loss(labels, logits, compute_full_loss=True,
|