https://github.com/GPflow/GPflow
Revision d025f9603419c338606e671258833922fa75e662 authored by gustavocmv on 24 August 2020, 18:54:38 UTC, committed by GitHub on 24 August 2020, 18:54:38 UTC
* using the first dimension to hold the quadrature summation

* adapting ndiagquad wrapper

* Changed bf for bX in docstrings

Co-authored-by: Gustavo Carvalho <gustavo.carvalho@delfosim.com>
Co-authored-by: st-- <st--@users.noreply.github.com>
Co-authored-by: Vincent Dutordoir <dutordoirv@gmail.com>
1 parent 6894af5
Raw File
Tip revision: d025f9603419c338606e671258833922fa75e662 authored by gustavocmv on 24 August 2020, 18:54:38 UTC
Change shape of quadrature tensors for better broadcasting (#1542)
Tip revision: d025f96
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