https://github.com/GPflow/GPflow
Raw File
Tip revision: cbfeb8f4783a2628937e6ac071937b58e8d04946 authored by sc336 on 26 January 2023, 16:02:23 UTC
Merge branch 'develop' into sc336/2.7.0-master-merge-again
Tip revision: cbfeb8f
__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