You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Users should be able to incorporate convolutions of two distributions as a new distribution into the model.
This could be used to model random noise added to a random variate.
Example:
p2 = Conv(p1, Normal(0, .1))
For the implementation, we could either try to use the 2D convolution in theano or write our own using FFT.
Also, many exponential family distributions have nice analytical convolutions that we could make use of.
The text was updated successfully, but these errors were encountered:
Users should be able to incorporate convolutions of two distributions as a new distribution into the model.
This could be used to model random noise added to a random variate.
Example:
For the implementation, we could either try to use the 2D convolution in theano or write our own using FFT.
Also, many exponential family distributions have nice analytical convolutions that we could make use of.
The text was updated successfully, but these errors were encountered: