Revision 624ed39512fe15f0324659f31e0bba67ea127bc0 authored by Artem Artemev on 14 November 2019, 11:54:53 UTC, committed by GitHub on 14 November 2019, 11:54:53 UTC
1 parent 32b76b7
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