https://github.com/GPflow/GPflow
Revision b5656f6aa73e6ae1e0b3748063f297c112501320 authored by Artem Artemev on 15 October 2019, 08:48:33 UTC, committed by Artem Artemev on 15 October 2019, 08:48:33 UTC
1 parent 0ee881e
Raw File
Tip revision: b5656f6aa73e6ae1e0b3748063f297c112501320 authored by Artem Artemev on 15 October 2019, 08:48:33 UTC
Initial update to the parameter docstring
Tip revision: b5656f6
__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