changed nasty whitespace

This commit is contained in:
James Hensman 2013-11-22 08:58:29 +00:00
parent 98b9dc0163
commit 5b1f700238

View file

@ -36,7 +36,6 @@ class Mapping(Parameterized):
def df_dtheta(self, dL_df, X): def df_dtheta(self, dL_df, X):
"""The gradient of the outputs of the multi-layer perceptron with respect to each of the parameters. """The gradient of the outputs of the multi-layer perceptron with respect to each of the parameters.
:param dL_df: gradient of the objective with respect to the function. :param dL_df: gradient of the objective with respect to the function.
:type dL_df: ndarray (num_data x output_dim) :type dL_df: ndarray (num_data x output_dim)
:param X: input locations where the function is evaluated. :param X: input locations where the function is evaluated.
@ -44,7 +43,6 @@ class Mapping(Parameterized):
:returns: Matrix containing gradients with respect to parameters of each output for each input data. :returns: Matrix containing gradients with respect to parameters of each output for each input data.
:rtype: ndarray (num_params length) :rtype: ndarray (num_params length)
""" """
raise NotImplementedError raise NotImplementedError
def plot(self, plot_limits=None, which_data='all', which_parts='all', resolution=None, levels=20, samples=0, fignum=None, ax=None, fixed_inputs=[], linecol=Tango.colorsHex['darkBlue']): def plot(self, plot_limits=None, which_data='all', which_parts='all', resolution=None, levels=20, samples=0, fignum=None, ax=None, fixed_inputs=[], linecol=Tango.colorsHex['darkBlue']):