pymc icon indicating copy to clipboard operation
pymc copied to clipboard

Bayesian Modeling and Probabilistic Programming in Python

Results 537 pymc issues
Sort by recently updated
recently updated
newest added

### Description The following example illustrates a restriction in the current logp derivations, when branch includes constants ```python import pytensor.tensor as pt import pymc as pm t = pt.arange(10) cat...

logprob

seed flaky test GARCH11::test_batched_size ## Description `TestGARCH11::test_batched_size` is flaky in CI, seeded previously non-deterministic rng function. ## Related Issue - [x] Closes #7674 - [x] Related to #7684 (alternative solution,...

tests
no releasenotes

### Describe the issue: I have defined my data in a `pm.Data` container along with its dimensionality `(dims=)` but when i use these points as likelihood and also pass the...

bug

### Describe the issue: Not sure if this belongs here or in the pytensor repo. Putting it here because the minimal example I can come up with uses PyMC. If...

bug
pytensor

Turning off the progress bar via `progressbar=False` does remove the progress bar, but other sampling-related initialization output is still printed. This results in a lot of output when sampling is...

feature request

## Description Added an error when trying to sample a Multinomial variable ## Related Issue - [x] Closes #7548 - [x] Related to #7548 ## Checklist - [x] Checked that...

## Description Increased the absolute (`atol=1e-3`) and relative (`rtol=1e-2`) tolerances in `np.testing.assert_allclose` within `TestGARCH11::test_batched_size`. This should help reduce test flakiness caused by minor numerical variations. ## Related Issue - [x]...

tests

### Description https://discourse.pymc.io/t/inference-issue-using-a-model-with-multinomial-latent-variables-on-multidimensional-observations/16022/4?u=ricardov94

## Description Add jitter_scale parameter to control the bounds of uniform jitter in initial points. This allows users to adjust the width of random initialisation, which is useful for the...

feature request
maintenance

### Before ```python def make_initial_point_fn( *, free_rvs: Sequence[TensorVariable], rvs_to_transforms: dict[TensorVariable, Transform], initval_strategies: dict[TensorVariable, np.ndarray | Variable | str | None], jitter_rvs: set[TensorVariable] | None = None, default_strategy: str = "support_point",...

feature request