Skip to content

Commit

Permalink
obsolete import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
schaul committed Jul 3, 2009
1 parent 2050819 commit 7845833
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .pydevproject
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@
<pydev_project>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/PyBrain-git-master</path>
</pydev_pathproperty>
</pydev_project>
4 changes: 2 additions & 2 deletions pybrain/auxiliary/gaussprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@


from scipy import r_, exp, zeros, eye, array, asarray, random, ravel, diag, sqrt, sin, cos, sort, mgrid, dot, floor
from scipy import c_
from scipy.linalg import solve, inv
from pybrain.datasets import SupervisedDataSet
from scipy.linalg import norm

# for plotting
from pylab import figure, clf, hold, plot, fill, title, show, norm, gcf, pcolor, gray #@UnresolvedImport
from pylab import figure, clf, hold, plot, fill, title, show, gcf, pcolor, gray

class GaussianProcess:
""" This class represents a basic n-dimensional Gaussian Process. The implementation
Expand Down

0 comments on commit 7845833

Please sign in to comment.