nimare.meta.cbma.kernel.Peaks2MapsKernel¶
-
class
Peaks2MapsKernel(resample_to_mask=True)[source]¶ Generate peaks2maps modeled activation images from coordinates.
Methods
get_params(self[, deep])Get parameters for this estimator. load(filename[, compressed])Load a pickled class instance from file. save(self, filename[, compress])Pickle the class instance to the provided file. set_params(self, \*\*params)Set the parameters of this estimator. transform(self, dataset[, mask, masked])Generate peaks2maps modeled activation images for each Contrast in dataset. -
get_params(self, deep=True)[source]¶ Get parameters for this estimator.
Parameters: deep (boolean, optional) – If True, will return the parameters for this estimator and contained subobjects that are estimators. Returns: params – Parameter names mapped to their values. Return type: mapping of string to any
-
classmethod
load(filename, compressed=True)[source]¶ Load a pickled class instance from file.
Parameters: Returns: obj – Loaded class object.
Return type: class object
-
save(self, filename, compress=True)[source]¶ Pickle the class instance to the provided file.
Parameters:
-
set_params(self, **params)[source]¶ Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form
<component>__<parameter>so that it’s possible to update each component of a nested object.Returns: Return type: self
-
transform(self, dataset, mask=None, masked=False)[source]¶ Generate peaks2maps modeled activation images for each Contrast in dataset.
Parameters: - ids (
list) – A list of Contrast IDs for which to generate modeled activation images. - masked (
boolean) – Whether to mask the maps generated by peaks2maps
Returns: imgs – A list of modeled activation images (one for each of the Contrasts in the input dataset).
Return type: listofnibabel.Nifti1Image- ids (
-