HomeSort by relevance Sort by last modified time
    Searched refs:_concentration (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
weibull.py 76 self._concentration = ops.convert_to_tensor(
78 check_ops.assert_same_float_dtype([self._scale, self._concentration])
85 self._concentration = control_flow_ops.with_dependencies([
87 self._concentration,
89 ], self._concentration)
104 return self._concentration
  /external/tensorflow/tensorflow/python/ops/distributions/
dirichlet.py 159 self._concentration = self._maybe_assert_valid_concentration(
162 self._total_concentration = math_ops.reduce_sum(self._concentration, -1)
164 dtype=self._concentration.dtype,
169 graph_parents=[self._concentration,
176 return self._concentration
dirichlet_multinomial.py 209 self._concentration = self._maybe_assert_valid_concentration(
213 self._total_concentration = math_ops.reduce_sum(self._concentration, -1)
215 dtype=self._concentration.dtype,
221 self._concentration],
232 return self._concentration
gamma.py 135 self._concentration = array_ops.identity(
139 [self._concentration, self._rate])
141 dtype=self._concentration.dtype,
146 graph_parents=[self._concentration,
159 return self._concentration
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
inverse_gamma.py 134 self._concentration = array_ops.identity(
138 [self._concentration, self._rate])
140 dtype=self._concentration.dtype,
145 graph_parents=[self._concentration,
158 return self._concentration

Completed in 69 milliseconds