https://github.com/cvnlab/GLMsingle
Revision b740b5d5597d145dfc39cb1db8579e252ee98023 authored by Kendrick Kay on 10 June 2022, 22:35:47 UTC, committed by Kendrick Kay on 10 June 2022, 22:35:47 UTC
1 parent b0775ba
Raw File
Tip revision: b740b5d5597d145dfc39cb1db8579e252ee98023 authored by Kendrick Kay on 10 June 2022, 22:35:47 UTC
fix typo
Tip revision: b740b5d
defaults.py
import time
import numpy as np

default_params = {
    'numforhrf': 50,
    'hrfthresh': 0.5,
    'hrffitmask': 1,
    'R2thresh': 0,
    'hrfmodel': 'optimise',
    'n_jobs': 1,
    'n_pcs': 10,
    'n_boots': 100,
    'extra_regressors': False,
    'wantlibrary': 1,
    'wantglmdenoise': 1,
    'wantfracridge': 1,
    'chunklen': 50000,
    'wantfileoutputs': [1, 1, 1, 1],
    'wantmemoryoutputs': [1, 1, 1, 1],
    'wanthdf5': 0,
    'wantparametric': 0,
    'wantpercentbold': 1,
    'wantlss': 0,
    'brainthresh': [99.0, 0.1],
    'brainR2': [],
    'brainexclude': False,
    'pcR2cutoff': [],
    'pcR2cutoffmask': 1,
    'pcstop': 1.05,
    'fracs': np.linspace(1, 0.05, 20),
    'wantautoscale': 1,
    'seed': time.time(),
    'suppressoutput': 0,
    'lambda': 0
}
back to top