nimare.base.Estimator¶
- class Estimator[source]¶
Bases:
nimare.base.NiMAREBaseEstimators take in Datasets and return MetaResults.
- fit(dataset)[source]¶
Fit Estimator to Dataset.
- Parameters
dataset (
nimare.dataset.Dataset) – Dataset object to analyze.- Returns
nimare.results.MetaResult– Results of Estimator fitting.
Notes
The
fitmethod is a light wrapper that runs input validation and preprocessing before fitting the actual model. Estimators’ individual “fitting” methods are implemented as_fit, although users should callfit.