https://github.com/GPflow/GPflow
Raw File
Tip revision: e95281f794d26cb0ff83904b2e4f8688e23b4944 authored by Sergio Pascual on 22 October 2019, 13:09:47 UTC
Removing training loop from utilities
Tip revision: e95281f
__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