https://github.com/GPflow/GPflow
Raw File
Tip revision: 711788506116546465a01ca30f2eab969eb081f3 authored by ST John on 29 April 2021, 10:40:46 UTC
fix other test
Tip revision: 7117885
__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