Revision f70e04d8230a0dc66538420731a5a4da2d4bc42e authored by Jesper Nielsen on 27 January 2022, 16:51:57 UTC, committed by GitHub on 27 January 2022, 16:51:57 UTC
1 parent 6fb65a0
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