mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-30 23:36:23 +02:00
Merge branch 'params' of github.com:SheffieldML/GPy into params
This commit is contained in:
commit
40ade9e157
2 changed files with 6 additions and 6 deletions
|
|
@ -208,6 +208,12 @@ class GP(Model):
|
|||
from ..plotting.matplot_dep import models_plots
|
||||
return models_plots.plot_fit(self,*args,**kwargs)
|
||||
|
||||
def input_sensitivity(self):
|
||||
"""
|
||||
Returns the sensitivity for each dimension of this model
|
||||
"""
|
||||
return self.kern.input_sensitivity()
|
||||
|
||||
def _getstate(self):
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -141,12 +141,6 @@ class Model(Parameterized):
|
|||
"""
|
||||
raise DeprecationWarning, 'parameters now have default constraints'
|
||||
|
||||
def input_sensitivity(self):
|
||||
"""
|
||||
Returns the sensitivity for each dimension of this kernel.
|
||||
"""
|
||||
return self.kern.input_sensitivity()
|
||||
|
||||
def objective_function(self):
|
||||
"""
|
||||
The objective function for the given algorithm.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue