You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the example "simple", I get this error message:
Traceback (most recent call last):
File "/home/alaya/Downloads/Spearmint/spearmint/main.py", line 494, in <module>
main()
File "/home/alaya/Downloads/Spearmint/spearmint/main.py", line 254, in main
chooser_module = importlib.import_module('spearmint.choosers.' + options['chooser'])
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module
__import__(name)
File "/home/alaya/Downloads/Spearmint/spearmint/choosers/default_chooser.py", line 197, in <module>
from ..models.abstract_model import function_over_hypers
File "/home/alaya/Downloads/Spearmint/spearmint/models/__init__.py", line 1, in <module>
from gp import GP
File "/home/alaya/Downloads/Spearmint/spearmint/models/gp.py", line 194, in <module>
from ..kernels import Matern52, Noise, Scale, SumKernel, TransformKernel
File "/home/alaya/Downloads/Spearmint/spearmint/kernels/__init__.py", line 1, in <module>
from matern import Matern52
File "/home/alaya/Downloads/Spearmint/spearmint/kernels/matern.py", line 187, in <module>
import kernel_utils
File "/home/alaya/Downloads/Spearmint/spearmint/kernels/kernel_utils.py", line 187, in <module>
import scipy.weave
ImportError: No module named weave
When running the example "simple", I get this error message:
According to this link:
So maybe
weave
instead ofscipy.weave
should be imported?By replacing all
scipy.weave
toweave
, the "simple" example now works well.I am using python 2.7.12, and the version of scipy is 0.19.0, the version of numpy is 1.12.1
The text was updated successfully, but these errors were encountered: