https://github.com/GPflow/GPflow
Raw File
Tip revision: 986aced42824b12ead047c6d8b93982ffe89e7db authored by ST John on 16 March 2020, 19:11:58 UTC
rescue code from #754
Tip revision: 986aced
__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