Revision 9f95d87c66582ab774e0979e4fe9957ea05f56be authored by st-- on 07 October 2020, 12:01:42 UTC, committed by GitHub on 07 October 2020, 12:01:42 UTC
1 parent cfd1830
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