https://github.com/GPflow/GPflow
Raw File
Tip revision: 646ca7a0dc8f7da7afe5f5d958fefe5abebece65 authored by ST John on 15 March 2021, 11:16:47 UTC
format
Tip revision: 646ca7a
__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