https://github.com/GPflow/GPflow
Revision 258e567c6eb066869613ee6f0baaa1824f7352ed authored by Jesper Nielsen on 30 August 2022, 13:18:08 UTC, committed by GitHub on 30 August 2022, 13:18:08 UTC
1 parent 7b989c8
Raw File
Tip revision: 258e567c6eb066869613ee6f0baaa1824f7352ed authored by Jesper Nielsen on 30 August 2022, 13:18:08 UTC
Rewrite GPRPosterior for numerical stability. (#1960)
Tip revision: 258e567
mypy.ini
[mypy]
show_error_codes = True
; First we turn on *all the checks*, and then we turn off those that are too annoying.
strict = True
ignore_missing_imports = True
disallow_subclassing_any = False
disallow_untyped_calls = False
disallow_untyped_decorators = False
; This is needed because version 1.20.0 of NumPy introduces typing, so some ignores are necessary /
; unnecessary depending on the version of numpy:
warn_unused_ignores = False
back to top