https://github.com/GPflow/GPflow
Raw File
Tip revision: a365045c6f17c6a805285ea0aaf9bc09ce386a5d authored by Jesper Nielsen on 20 January 2022, 11:23:01 UTC
Merge pull request #1757 from GPflow/develop
Tip revision: a365045
__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