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
The idea would be to derive the logprob for the following type of graphs
import pytensor.tensor as pt from pymc import logp x_rv = pt.max(at.random.uniform(0, 1, size=3)) y_rv = pt.min(at.random.uniform(0, 1, size=3)) x_vv = x_rv.clone() y_vv = y_rv.clone() x_max_logprob = logp(x_rv, x_vv) y_max_logprob = logp(y_rv, y_vv)
Reference: https://en.wikipedia.org/wiki/Order_statistic#Probabilistic_analysis
CC @ricardoV94 @larryshamalama
The text was updated successfully, but these errors were encountered:
Superseded by #7120
Sorry, something went wrong.
No branches or pull requests
Description
Description
The idea would be to derive the logprob for the following type of graphs
Reference: https://en.wikipedia.org/wiki/Order_statistic#Probabilistic_analysis
CC @ricardoV94 @larryshamalama
The text was updated successfully, but these errors were encountered: