https://github.com/GPflow/GPflow
Revision 8562503b32a22c0c364474b46a53a959b6373a64 authored by st-- on 08 October 2020, 15:04:55 UTC, committed by GitHub on 08 October 2020, 15:04:55 UTC
Adds support for inducing variables with dynamically changing shape. Change usage from `len(inducing_variable)` to `inducing_variable.num_inducing` instead. Resolves #1578.
1 parent 9f95d87
Raw File
Tip revision: 8562503b32a22c0c364474b46a53a959b6373a64 authored by st-- on 08 October 2020, 15:04:55 UTC
Replace len(inducing_variable) with inducing_variable.num inducing property (#1594)
Tip revision: 8562503
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