https://github.com/GPflow/GPflow
Revision 6bf7110995330b891633f0c06a0ac5a2f4d6427e authored by Jesper Nielsen on 28 April 2022, 12:01:21 UTC, committed by GitHub on 28 April 2022, 12:01:21 UTC
2 parent s 10cfc31 + d3a4819
Raw File
Tip revision: 6bf7110995330b891633f0c06a0ac5a2f4d6427e authored by Jesper Nielsen on 28 April 2022, 12:01:21 UTC
Merge pull request #1871 from GPflow/develop
Tip revision: 6bf7110
__init__.py
import warnings

import numpy as np
import tensorflow as tf

import gpflow

warnings.filterwarnings("ignore")
gpflow.config.set_default_float(np.float64)
back to top