https://github.com/GPflow/GPflow
Revision 3f74b5c7f08271d3ee7ba4610cc5d832bf0c5af0 authored by Fergus on 08 April 2022, 14:35:58 UTC, committed by GitHub on 08 April 2022, 14:35:58 UTC
* Remove positive transform for anisotropic lengthscales in higher dims

* Add cosine to ard tests
1 parent 41fc73c
Raw File
Tip revision: 3f74b5c7f08271d3ee7ba4610cc5d832bf0c5af0 authored by Fergus on 08 April 2022, 14:35:58 UTC
Remove positive transform for anisotropic lengthscales in higher dims (#1843)
Tip revision: 3f74b5c
mypy.ini
[mypy]
; 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