https://github.com/GPflow/GPflow
Raw File
Tip revision: b81e94e16826a1c8d996b0f590b8c3407a0e6a07 authored by Jesper Nielsen on 23 September 2022, 09:50:10 UTC
Experiment with using a warped halton sequence for inducing points.
Tip revision: b81e94e
__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