mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
Added mlp mapping (with possibility of having multiple layers).
This commit is contained in:
parent
e6739788ea
commit
128ebbabc5
12 changed files with 187 additions and 17 deletions
|
|
@ -6,7 +6,6 @@ import numpy as np
|
|||
import pylab as pb
|
||||
from .. import kern
|
||||
from ..util.linalg import pdinv, mdot, tdot, dpotrs, dtrtrs
|
||||
# from ..util.plot import gpplot, Tango
|
||||
from ..likelihoods import EP
|
||||
from gp_base import GPBase
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
# Copyright (c) 2013, GPy authors (see AUTHORS.txt).
|
||||
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
||||
|
||||
import numpy as np
|
||||
from .. import kern
|
||||
from ..util.plot import Tango, x_frame1D, x_frame2D
|
||||
from parameterized import Parameterized
|
||||
import numpy as np
|
||||
import pylab as pb
|
||||
from GPy.core.parameterized import Parameterized
|
||||
|
||||
class Mapping(Parameterized):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue