From 5a170dd3745d2c45e13b2d8d293b88f779065627 Mon Sep 17 00:00:00 2001 From: Jasper Snoek Date: Sat, 30 Nov 2013 11:41:40 -0500 Subject: [PATCH] cleaned up some import statements --- spearmint/spearmint/chooser/CMAChooser.py | 2 +- spearmint/spearmint/chooser/GPConstrainedEIChooser.py | 2 +- spearmint/spearmint/chooser/GPEIChooser.py | 2 +- spearmint/spearmint/chooser/GPEIOptChooser.py | 2 +- spearmint/spearmint/chooser/GPEIperSecChooser.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/spearmint/spearmint/chooser/CMAChooser.py b/spearmint/spearmint/chooser/CMAChooser.py index 5679339..77f7947 100644 --- a/spearmint/spearmint/chooser/CMAChooser.py +++ b/spearmint/spearmint/chooser/CMAChooser.py @@ -1,5 +1,5 @@ from cma import CMAEvolutionStrategy -import util +from spearmint import util import Locker def init(expt_dir, arg_string): diff --git a/spearmint/spearmint/chooser/GPConstrainedEIChooser.py b/spearmint/spearmint/chooser/GPConstrainedEIChooser.py index e274760..c246837 100644 --- a/spearmint/spearmint/chooser/GPConstrainedEIChooser.py +++ b/spearmint/spearmint/chooser/GPConstrainedEIChooser.py @@ -20,7 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import os -import gp +from spearmint import gp import sys from spearmint import util import tempfile diff --git a/spearmint/spearmint/chooser/GPEIChooser.py b/spearmint/spearmint/chooser/GPEIChooser.py index a1f69cf..6440674 100644 --- a/spearmint/spearmint/chooser/GPEIChooser.py +++ b/spearmint/spearmint/chooser/GPEIChooser.py @@ -20,7 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import os -import gp +from spearmint import gp import sys from spearmint import util import tempfile diff --git a/spearmint/spearmint/chooser/GPEIOptChooser.py b/spearmint/spearmint/chooser/GPEIOptChooser.py index b21749e..ec8db34 100644 --- a/spearmint/spearmint/chooser/GPEIOptChooser.py +++ b/spearmint/spearmint/chooser/GPEIOptChooser.py @@ -20,7 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import os -import gp +from spearmint import gp import sys from spearmint import util import tempfile diff --git a/spearmint/spearmint/chooser/GPEIperSecChooser.py b/spearmint/spearmint/chooser/GPEIperSecChooser.py index 1d5b8f6..12ff364 100644 --- a/spearmint/spearmint/chooser/GPEIperSecChooser.py +++ b/spearmint/spearmint/chooser/GPEIperSecChooser.py @@ -20,7 +20,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import os -import gp +from spearmint import gp import sys from spearmint import util import tempfile