Searched refs:compute_full_loss (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.estimator.-poisson-regression-head.pbtxt | 21 …lf\', \'label_dimension\', \'weight_column\', \'loss_reduction\', \'compute_full_loss\', \'name\']…
|
D | tensorflow.nn.pbtxt | 241 …argspec: "args=[\'targets\', \'log_input\', \'compute_full_loss\', \'name\'], varargs=None, keywor…
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.estimator.-poisson-regression-head.pbtxt | 21 …lf\', \'label_dimension\', \'weight_column\', \'loss_reduction\', \'compute_full_loss\', \'name\']…
|
D | tensorflow.nn.pbtxt | 205 …argspec: "args=[\'targets\', \'log_input\', \'compute_full_loss\', \'name\'], varargs=None, keywor…
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_test.py | 162 def _log_poisson_loss(self, x, z, compute_full_loss=False): argument 164 if compute_full_loss: 174 y_np = self._log_poisson_loss(x_np, z_np, compute_full_loss=False) 175 y_np_stirling = self._log_poisson_loss(x_np, z_np, compute_full_loss=True) 176 y_tf = nn_impl.log_poisson_loss(z_np, x_np, compute_full_loss=False) 177 y_tf_stirling = nn_impl.log_poisson_loss(z_np, x_np, compute_full_loss=True) 191 y_tf = nn_impl.log_poisson_loss(z_np, x_tf, compute_full_loss=False) 193 z_np, x_tf, compute_full_loss=True)
|
D | nn_impl.py | 49 def log_poisson_loss(targets, log_input, compute_full_loss=False, name=None): argument 98 if compute_full_loss:
|