mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-10 20:42:39 +02:00
More input fixes
This commit is contained in:
parent
506a57def8
commit
4b7036bdb2
3 changed files with 4 additions and 4 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
from scg import SCG
|
from .scg import SCG
|
||||||
from optimization import *
|
from .optimization import *
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Copyright (c) 2012-2014, Max Zwiessele
|
# Copyright (c) 2012-2014, Max Zwiessele
|
||||||
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
# Licensed under the BSD 3-clause license (see LICENSE.txt)
|
||||||
|
|
||||||
from gradient_descent_update_rules import FletcherReeves, \
|
from .gradient_descent_update_rules import FletcherReeves, \
|
||||||
PolakRibiere
|
PolakRibiere
|
||||||
from Queue import Empty
|
from Queue import Empty
|
||||||
from multiprocessing import Value
|
from multiprocessing import Value
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ try:
|
||||||
rasm_available = True
|
rasm_available = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
rasm_available = False
|
rasm_available = False
|
||||||
from scg import SCG
|
from .scg import SCG
|
||||||
|
|
||||||
class Optimizer():
|
class Optimizer():
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue