https://github.com/GPflow/GPflow
Raw File
Tip revision: 2deea642c19a49d4a094e5699f91273c54d2a64c authored by Simon Chiu on 14 December 2022, 10:09:09 UTC
Noted bug here
Tip revision: 2deea64
__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