@@ -54,17 +54,17 @@ class ALE(CBMAEstimator):
5454 This method is must slower, and is only slightly more accurate.
5555 ======================= =================================================================
5656
57- n_iters : :obj:`int`, optional
57+ n_iters : :obj:`int`, default=5000
5858 Number of iterations to use to define the null distribution.
5959 This is only used if ``null_method=="montecarlo"``.
60- Default is 10000 .
60+ Default is 5000 .
6161 memory : instance of :class:`joblib.Memory`, :obj:`str`, or :class:`pathlib.Path`
6262 Used to cache the output of a function. By default, no caching is done.
6363 If a :obj:`str` is given, it is the path to the caching directory.
6464 memory_level : :obj:`int`, default=0
6565 Rough estimator of the amount of memory used by caching.
6666 Higher value means more memory for caching. Zero means no caching.
67- n_cores : :obj:`int`, optional
67+ n_cores : :obj:`int`, default=1
6868 Number of cores to use for parallelization.
6969 This is only used if ``null_method=="montecarlo"``.
7070 If <=0, defaults to using all available cores.
@@ -135,7 +135,7 @@ def __init__(
135135 self ,
136136 kernel_transformer = ALEKernel ,
137137 null_method = "approximate" ,
138- n_iters = None ,
138+ n_iters = 5000 ,
139139 memory = Memory (location = None , verbose = 0 ),
140140 memory_level = 0 ,
141141 n_cores = 1 ,
@@ -348,15 +348,15 @@ class ALESubtraction(PairwiseCBMAEstimator):
348348 kernel_transformer : :obj:`~nimare.meta.kernel.KernelTransformer`, optional
349349 Kernel with which to convolve coordinates from dataset.
350350 Default is ALEKernel.
351- n_iters : :obj:`int`, optional
352- Default is 10000 .
351+ n_iters : :obj:`int`, default=5000
352+ Default is 5000 .
353353 memory : instance of :class:`joblib.Memory`, :obj:`str`, or :class:`pathlib.Path`
354354 Used to cache the output of a function. By default, no caching is done.
355355 If a :obj:`str` is given, it is the path to the caching directory.
356356 memory_level : :obj:`int`, default=0
357357 Rough estimator of the amount of memory used by caching.
358358 Higher value means more memory for caching. Zero means no caching.
359- n_cores : :obj:`int`, optional
359+ n_cores : :obj:`int`, default=1
360360 Number of processes to use for meta-analysis. If -1, use all available cores.
361361 Default is 1.
362362
@@ -652,9 +652,9 @@ class SCALE(CBMAEstimator):
652652 This parameter was previously incorrectly labeled as "optional" and indicated that
653653 it supports tab-delimited files, which it does not (yet).
654654
655- n_iters : int, optional
656- Number of iterations for statistical inference. Default: 10000
657- n_cores : int, optional
655+ n_iters : int, default=5000
656+ Number of iterations for statistical inference. Default: 5000
657+ n_cores : int, default=1
658658 Number of processes to use for meta-analysis. If -1, use all available cores.
659659 Default: 1
660660 kernel_transformer : :obj:`~nimare.meta.kernel.KernelTransformer`, optional
0 commit comments