https://github.com/GPflow/GPflow
Revision 2a7158341533d476ca769434e07e45dafddec5cd authored by Artem Artemev on 03 October 2017, 19:12:43 UTC, committed by Artem Artemev on 03 October 2017, 19:12:43 UTC
1 parent c47bc5c
Raw File
Tip revision: 2a7158341533d476ca769434e07e45dafddec5cd authored by Artem Artemev on 03 October 2017, 19:12:43 UTC
New project layout - add params sub module.
Tip revision: 2a71583
__init__.py
# Copyright 2016 alexggmatthews, James Hensman
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


# flake8: noqa
from __future__ import absolute_import

from gpflow._version import __version__
from gpflow._settings import SETTINGS as settings

from gpflow import misc
from gpflow import transforms
from gpflow import conditionals
from gpflow import densities
from gpflow import likelihoods
from gpflow import kernels
from gpflow import ekernels
from gpflow import priors
from gpflow import core
from gpflow import models
from gpflow import test_util

from gpflow import training as train

from gpflow.decors import autoflow
from gpflow.decors import name_scope
from gpflow.decors import params_as_tensors

from gpflow.core.base import GPflowError
from gpflow.core.base import Build

from gpflow.params import Parameter as Param
from gpflow.params import ParamList
from gpflow.params import DataHolder
from gpflow.params import FormlessData
from gpflow.params import Minibatch
from gpflow.params import Parameterized
back to top