In PyMARE, fit and fit_dataset both return Estimators, rather than Results. Instead, there's an additional step of calling Estimator.summary() to produce the Results object. This is different from NiMARE, where fitting an Estimator returns a MetaResult.
I don't know if the extra step is necessary. I.e., does fit returning an Estimator instead of a Result serve a purpose?
In PyMARE,
fitandfit_datasetboth return Estimators, rather than Results. Instead, there's an additional step of callingEstimator.summary()to produce the Results object. This is different from NiMARE, where fitting an Estimator returns a MetaResult.I don't know if the extra step is necessary. I.e., does
fitreturning an Estimator instead of a Result serve a purpose?