https://github.com/GPflow/GPflow
Raw File
Tip revision: 331d44f8e661f6aef4d1a8c669b6295e41bc341c authored by Jesper Nielsen on 10 May 2022, 10:27:03 UTC
Merge pull request #1884 from GPflow/develop
Tip revision: 331d44f
__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