tf.contrib.distributions.Dirichlet.log_prob(value, name='log_prob')
Log probability density/mass function (depending on is_continuous).
Additional documentation from Dirichlet:
Note that the input must be a non-negative tensor with dtype dtype and whose shape can be broadcast with self.alpha. For fixed leading dimensions, the last dimension represents counts for the corresponding Dirichlet distribution in self.alpha. x is only legal if it sums up to one.
Args:
- 
value:floatordoubleTensor. - 
name: The name to give this op. 
Returns:
- 
log_prob: aTensorof shapesample_shape(x) + self.batch_shapewith values of typeself.dtype. 
Please login to continue.