mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-09 12:02:38 +02:00
changed imports to relative ones
This commit is contained in:
parent
3e27748b42
commit
ff700bbebf
2 changed files with 4 additions and 3 deletions
|
|
@ -2,11 +2,12 @@
|
||||||
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from ..util.warping_functions import *
|
#from ..util.warping_functions import *
|
||||||
from ..core import GP
|
from ..core import GP
|
||||||
from .. import likelihoods
|
from .. import likelihoods
|
||||||
from paramz import ObsAr
|
from paramz import ObsAr
|
||||||
from GPy.util.warping_functions import TanhFunction
|
#from GPy.util.warping_functions import TanhFunction
|
||||||
|
from ..util.warping_functions import TanhFunction
|
||||||
from GPy import kern
|
from GPy import kern
|
||||||
|
|
||||||
class WarpedGP(GP):
|
class WarpedGP(GP):
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from scipy import sparse
|
from scipy import sparse
|
||||||
import itertools
|
import itertools
|
||||||
from GPy.models import WarpedGP
|
from ...models import WarpedGP
|
||||||
|
|
||||||
def in_ipynb():
|
def in_ipynb():
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue