mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-08 19:42:39 +02:00
added missing import in util.linalg
This commit is contained in:
parent
4bbc27ff9f
commit
a8c82eac02
1 changed files with 2 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from likelihood import likelihood
|
from likelihood import likelihood
|
||||||
|
from GPy.util.linalg import jitchol
|
||||||
|
|
||||||
class Gaussian(likelihood):
|
class Gaussian(likelihood):
|
||||||
"""
|
"""
|
||||||
|
|
@ -7,7 +8,7 @@ class Gaussian(likelihood):
|
||||||
|
|
||||||
:param Y: observed output (Nx1 numpy.darray)
|
:param Y: observed output (Nx1 numpy.darray)
|
||||||
..Note:: Y values allowed depend on the likelihood_function used
|
..Note:: Y values allowed depend on the likelihood_function used
|
||||||
:param variance :
|
:param variance :
|
||||||
:param normalize: whether to normalize the data before computing (predictions will be in original scales)
|
:param normalize: whether to normalize the data before computing (predictions will be in original scales)
|
||||||
:type normalize: False|True
|
:type normalize: False|True
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue