-
Notifications
You must be signed in to change notification settings - Fork 2.2k
observe(sum) for Normal via rewrite to equivalent NormalRV #8067
New issue
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
Merged
ricardoV94
merged 5 commits into
pymc-devs:main
from
eclipse1605:measurable-sum-normal-observe
Jan 26, 2026
+168
−0
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a1ba0dc
add messurable logprob for iid normal to support observe(pm.math.sum)
eclipse1605 55484d0
rewrite sum(NormalRV) to equivalent NormalRV
eclipse1605 4be31bf
fixing nits
eclipse1605 96258d7
reverted unnecessary handling of mypy failing locally
eclipse1605 49f0145
simplify rewrite
eclipse1605 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| # Copyright 2024 - present The PyMC Developers | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
| # MIT License | ||
| # | ||
| # Copyright (c) 2021-2022 aesara-devs | ||
| # | ||
| # Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| # of this software and associated documentation files (the "Software"), to deal | ||
| # in the Software without restriction, including without limitation the rights | ||
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| # copies of the Software, and to permit persons to whom the Software is | ||
| # furnished to do so, subject to the following conditions: | ||
| # | ||
| # The above copyright notice and this permission notice shall be included in all | ||
| # copies or substantial portions of the Software. | ||
| # | ||
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| # SOFTWARE. | ||
| """Measurable rewrites for arithmetic operations.""" | ||
|
|
||
| from pytensor import tensor as pt | ||
| from pytensor.graph.basic import Apply | ||
| from pytensor.graph.fg import FunctionGraph | ||
| from pytensor.graph.rewriting.basic import node_rewriter | ||
| from pytensor.tensor.extra_ops import broadcast_shape | ||
| from pytensor.tensor.math import Sum | ||
| from pytensor.tensor.random.basic import NormalRV | ||
| from pytensor.tensor.type_other import NoneConst, NoneTypeT | ||
| from pytensor.tensor.variable import TensorVariable | ||
|
|
||
| from pymc.logprob.rewriting import measurable_ir_rewrites_db | ||
|
|
||
|
|
||
| @node_rewriter([Sum]) | ||
| def sum_of_normals(fgraph: FunctionGraph, node: Apply) -> list[TensorVariable] | None: | ||
| [base_var] = node.inputs | ||
| if base_var.owner is None: | ||
| return None | ||
|
|
||
| latent_op = base_var.owner.op | ||
| if not isinstance(latent_op, NormalRV): | ||
| return None | ||
|
|
||
| mu, sigma = latent_op.dist_params(base_var.owner) | ||
eclipse1605 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| size = latent_op.size_param(base_var.owner) | ||
| if size is None or isinstance(size.type, NoneTypeT): | ||
| target_shape = broadcast_shape(mu, sigma) # type: ignore[arg-type] | ||
| else: | ||
| target_shape = size # type: ignore[assignment] | ||
|
|
||
| mu_b = pt.broadcast_to(mu, target_shape) # type: ignore[arg-type] | ||
| sigma_b = pt.broadcast_to(sigma, target_shape) # type: ignore[arg-type] | ||
eclipse1605 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| axis = node.op.axis | ||
| mu_sum = pt.sum(mu_b, axis=axis) | ||
| sigma_sum = pt.sqrt(pt.sum(pt.square(sigma_b), axis=axis)) | ||
|
|
||
| rng = base_var.owner.inputs[0] | ||
| sum_rv = latent_op.make_node(rng, NoneConst, mu_sum, sigma_sum).outputs[1] | ||
eclipse1605 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| return [sum_rv] | ||
|
|
||
|
|
||
| measurable_ir_rewrites_db.register( | ||
| "sum_of_normals", | ||
| sum_of_normals, | ||
| "basic", | ||
| "arithmetic", | ||
| ) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| # Copyright 2024 - present The PyMC Developers | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
| # MIT License | ||
| # | ||
| # Copyright (c) 2021-2022 aesara-devs | ||
| # | ||
| # Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| # of this software and associated documentation files (the "Software"), to deal | ||
| # in the Software without restriction, including without limitation the rights | ||
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| # copies of the Software, and to permit persons to whom the Software is | ||
| # furnished to do so, subject to the following conditions: | ||
| # | ||
| # The above copyright notice and this permission notice shall be included in all | ||
| # copies or substantial portions of the Software. | ||
| # | ||
| # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| # SOFTWARE. | ||
|
|
||
| import numpy as np | ||
|
|
||
| from pytensor import tensor as pt | ||
|
|
||
| from pymc.logprob.basic import logp | ||
|
|
||
|
|
||
| def test_sum_of_normals_logprob(): | ||
eclipse1605 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| mu = pt.constant([1.0, 2.0, 3.0]) | ||
| sigma = pt.constant([1.0, 2.0, 3.0]) | ||
|
|
||
| x_rv = pt.random.normal(mu, sigma, name="x") | ||
| x_sum = pt.sum(x_rv) | ||
| x_sum_vv = pt.scalar("x_sum") | ||
|
|
||
| sum_logp = logp(x_sum, x_sum_vv) | ||
|
|
||
| ref_mu = pt.sum(mu) | ||
| ref_sigma = pt.sqrt(pt.sum(pt.square(sigma))) | ||
| ref_rv = pt.random.normal(ref_mu, ref_sigma, name="ref") | ||
| ref_vv = pt.scalar("ref_vv") | ||
| ref_logp = logp(ref_rv, ref_vv) | ||
|
|
||
| test_val = 0.5 | ||
| np.testing.assert_allclose( | ||
| sum_logp.eval({x_sum_vv: test_val}), | ||
| ref_logp.eval({ref_vv: test_val}), | ||
| ) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.