Revision ed6acf5991a38302863377dfbb6df99ab19647b4 authored by John Mcleod on 21 September 2021, 20:30:14 UTC, committed by GitHub on 21 September 2021, 20:30:14 UTC
1 parent 5267b72
Raw File
__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