auspect
Results
2
comments of
auspect
> What should one do, if one wants to get both the mean and the stddev ? Thanks in advance. > > TF Version 2.13.0 TFP Version 0.20.1 I'm not...
> This solved it for me > > ```python > def NLL(y, distr): > return -distr.log_prob(y) > > def my_dist(params): > return tfd.Normal(loc=params[:,0:1], scale=1e-3 + tf.math.softplus(0.05 * params[:,1:2]))# both parameters...