https://github.com/pymc-devs/pymc3
Revision 9ee5d84b5048aea0690bba2629ece684656ad186 authored by Daniel Saunders on 18 August 2023, 16:31:02 UTC, committed by GitHub on 18 August 2023, 16:31:02 UTC
* add ICARRV and ICAR

* reorganized API so W is required, added tests on logp,rng,checks

* adjusted tests and api

* add ICAR to lists in distributions/__init__.py

* fix check_pymc_params_match_rv_op test

* deleted unnecessary pytest.mark.parametize

* fix check for square matrix + check_pymc_match_rv_op

* fix moment test

* removed asserts, added tests on sizes

* Implementing Bill's comments

* add _supp_shape_from_params()
1 parent 470d474
Raw File
Tip revision: 9ee5d84b5048aea0690bba2629ece684656ad186 authored by Daniel Saunders on 18 August 2023, 16:31:02 UTC
add ICARRV and ICAR (#6831)
Tip revision: 9ee5d84
mypy.ini
# Autogenerated by typing_copilot v0.6.0
[mypy]
no_implicit_optional = False
strict_optional = True
warn_redundant_casts = False
check_untyped_defs = False
disallow_untyped_calls = False
disallow_incomplete_defs = False
disallow_untyped_defs = False
disallow_untyped_decorators = False
ignore_missing_imports = True
warn_unused_ignores = False
back to top