Ejemplo n.º 1
0
 def __call__(self, x):
   """Computes regularization using an unbiased Monte Carlo estimate."""
   prior = generated_random_variables.Independent(
       generated_random_variables.Cauchy(
           loc=tf.broadcast_to(self.loc, x.distribution.event_shape),
           scale=tf.broadcast_to(self.scale, x.distribution.event_shape)
       ).distribution,
       reinterpreted_batch_ndims=len(x.distribution.event_shape))
   negative_entropy = x.distribution.log_prob(x)
   cross_entropy = -prior.distribution.log_prob(x)
   return self.scale_factor * (negative_entropy + cross_entropy)
Ejemplo n.º 2
0
 def __call__(self, shape, dtype=None):
   if not self.built:
     self.build(shape, dtype)
   loc = self.loc
   if self.loc_constraint:
     loc = self.loc_constraint(loc)
   scale = self.scale
   if self.scale_constraint:
     scale = self.scale_constraint(scale)
   return generated_random_variables.Independent(
       generated_random_variables.Cauchy(loc=loc, scale=scale).distribution,
       reinterpreted_batch_ndims=len(shape))