mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-27 14:25:16 +02:00
Fixed incorrect import
This commit is contained in:
parent
5c4ce10a53
commit
3320146eec
3 changed files with 4 additions and 4 deletions
|
|
@ -18,8 +18,8 @@
|
|||
|
||||
import numpy as np
|
||||
import scipy.linalg as sp
|
||||
from gp import GP
|
||||
from parameterization.param import Param
|
||||
from .gp import GP
|
||||
from .parameterization.param import Param
|
||||
from ..inference.latent_function_inference import gaussian_grid_inference
|
||||
from .. import likelihoods
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# publisher={IEEE}
|
||||
#}
|
||||
|
||||
from grid_posterior import GridPosterior
|
||||
from .grid_posterior import GridPosterior
|
||||
import numpy as np
|
||||
from . import LatentFunctionInference
|
||||
log_2_pi = np.log(2*np.pi)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
# Kurt Cutajar
|
||||
|
||||
import numpy as np
|
||||
from stationary import Stationary
|
||||
from .stationary import Stationary
|
||||
from paramz.caching import Cache_this
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue