We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Theano implements fast convolution via FFT. We could implement a Conv distribution that takes two distributions and represents their convolution.
Conv
The text was updated successfully, but these errors were encountered:
You would use it like Conv(x, dist1, dist2). If either dist1 or dist2 don't contain the variable x, we should throw an error.
Conv(x, dist1, dist2)
dist1
dist2
x
Sorry, something went wrong.
There may be distributions that we can convolute symbolically. If that's the case, Conv should automatically use the fastest approach.
No branches or pull requests
Theano implements fast convolution via FFT.
We could implement a
Conv
distribution that takes two distributions and represents their convolution.The text was updated successfully, but these errors were encountered: