https://github.com/GPflow/GPflow
Revision cc1d9d98cb4f59674f103ec4d94ad9181af29969 authored by ST John on 15 April 2021, 09:18:28 UTC, committed by ST John on 15 April 2021, 09:18:28 UTC
This reverts commit a9d889beeb63701793a978e45f5a2b2cbeed7a03.
1 parent 514ad70
Raw File
Tip revision: cc1d9d98cb4f59674f103ec4d94ad9181af29969 authored by ST John on 15 April 2021, 09:18:28 UTC
Revert "Experiment: use the caching rather than fused predict_f in SVGP"
Tip revision: cc1d9d9
mypy.ini
[mypy]
ignore_missing_imports = True

; the following modules are not passing mypy, so we're skipping them until they've been fixed up.
; see github issue https://github.com/GPflow/GPflow/issues/1368 for more information. Note that some
; modules that haven't had types added are passing anyway so may not appear below.
;
; remove modules from this skip list when types have been added
[mypy-gpflow.conditionals.*,gpflow.config.*,gpflow.covariances.*,gpflow.expectations.*]
ignore_errors = True

[mypy-gpflow.kernels.*,gpflow.models.*,gpflow.monitor.*,gpflow.optimizers.natgrad,gpflow.optimizers.mcmc,gpflow.utilities.*]
ignore_errors = True

[mypy-gpflow.mean_functions]
ignore_errors = True

[mypy-tests.*]
ignore_errors = True
back to top