https://github.com/GPflow/GPflow
Raw File
Tip revision: 36c1a01f1d980454782cc1b19c90e88a2c71f6fe authored by Artem Artemev on 07 October 2019, 08:43:59 UTC
Update docstring of the helper
Tip revision: 36c1a01
__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