rapidtide 3.1.1__tar.gz → 3.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rapidtide-3.1.1 → rapidtide-3.1.3}/CHANGELOG.md +27 -0
- {rapidtide-3.1.1/rapidtide.egg-info → rapidtide-3.1.3}/PKG-INFO +2 -1
- rapidtide-3.1.3/SECURITY.md +9 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/pyproject.toml +1 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/OrthoImageItem.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/RapidtideDataset.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/_version.py +3 -3
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/calccoherence.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/calcsimfunc.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/correlate.py +7 -43
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testLD +1 -1
- rapidtide-3.1.3/rapidtide/data/examples/src/testdlfilt +25 -0
- rapidtide-3.1.3/rapidtide/data/examples/src/testfft +35 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfmri +26 -9
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfuncs +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testhappy +1 -3
- rapidtide-3.1.3/rapidtide/data/models/model_cnn_pytorch_fulldata/loss.png +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnn_pytorch_fulldata/loss.txt +1 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnn_pytorch_fulldata/model.pth +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnn_pytorch_fulldata/model_meta.json +80 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnbp_pytorch_fullldata/loss.png +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnbp_pytorch_fullldata/loss.txt +1 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnbp_pytorch_fullldata/model.pth +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnbp_pytorch_fullldata/model_meta.json +138 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnfft_pytorch_fulldata/loss.png +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnfft_pytorch_fulldata/loss.txt +1 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnfft_pytorch_fulldata/model.pth +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_cnnfft_pytorch_fulldata/model_meta.json +128 -0
- rapidtide-3.1.3/rapidtide/data/models/model_ppgattention_pytorch_w128_fulldata/loss.png +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_ppgattention_pytorch_w128_fulldata/loss.txt +1 -0
- rapidtide-3.1.3/rapidtide/data/models/model_ppgattention_pytorch_w128_fulldata/model.pth +0 -0
- rapidtide-3.1.3/rapidtide/data/models/model_ppgattention_pytorch_w128_fulldata/model_meta.json +49 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/dlfilter.py +45 -43
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/dlfiltertorch.py +667 -308
- rapidtide-3.1.3/rapidtide/ffttools.py +168 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/filter.py +2329 -2323
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/fit.py +18 -16
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/happy_supportfuncs.py +580 -188
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/helper_classes.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/io.py +73 -48
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/linfitfiltpass.py +3 -4
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/makelaggedtcs.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/maskutil.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/miscmath.py +15 -26
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/patchmatch.py +3 -3
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/ppgproc.py +7 -5
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/refinedelay.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/refineregressor.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/resample.py +29 -25
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/fingerprint.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/happywarp.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/simFuncClasses.py +4 -4
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_aliasedcorrelate.py +3 -3
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_congrid.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_dlfiltertorch.py +94 -284
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_doresample.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fastresampler.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_filter.py +7 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunhappy_v4.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_getparsers.py +3 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_motionregress.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_padvec.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_rapidtideparser.py +49 -49
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_refinedelay.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_timeshift.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/util.py +56 -4
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/adjustoffset.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/applydlfilter.py +134 -24
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/atlasaverage.py +5 -5
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/delayvar.py +7 -7
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/diffrois.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/fdica.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/filttc.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/fitSimFuncMap.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/gmscalc.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/happy.py +132 -57
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/happy_parser.py +6 -6
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/histnifti.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/linfitfilt.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/niftistats.py +3 -3
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/parser_funcs.py +0 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/physiofreq.py +1 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/pixelcomp.py +3 -3
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/plethquality.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/rankimage.py +4 -4
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/rapidtide.py +24 -13
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/rapidtide_parser.py +20 -11
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/refineDelayMap.py +17 -17
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/refineRegressor.py +33 -33
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/regressfrommaps.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/retroregress.py +8 -8
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/roisummarize.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showxcorrx.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/spatialmi.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/synthASL.py +2 -2
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/tidepool.py +17 -6
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/variabilityizer.py +1 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3/rapidtide.egg-info}/PKG-INFO +2 -1
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide.egg-info/SOURCES.txt +20 -5
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_pytorch/best_model.pth +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.png +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/loss.txt +0 -1
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model.keras +0 -0
- rapidtide-3.1.1/rapidtide/data/models/model_cnn_w064_l13_fn20_fl08/model_meta.json +0 -167
- {rapidtide-3.1.1 → rapidtide-3.1.3}/CLAUDE.md +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/CODE_OF_CONDUCT.md +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/CONTRIBUTING.md +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/INSTALL.rst +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/LICENSE +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/MANIFEST.in +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/README.rst +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/TODO.md +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/USAGE.rst +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/download-nda-data +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/downloadcmd-auther +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/gmscalc-HCPYA +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/list-rapidtide-relevant-images +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/mount-and-run +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/rapidtide-HCPYA +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/rapidtide-cloud-test +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/cloud/simple-cp-test +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/Colortables.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/__init__.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/calcnullsimfunc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/installtestdata +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/test_findmaxlag.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/test_io +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/test_mlregressallt.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/test_rapidtidecompare +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testalign +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testatlasaverage +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testboth +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testcifti +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testcomplex +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testdecomp +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testdelayvar +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfileorfloat +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfingerprint +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfmridocker +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testfrozen +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testglmfilt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testinitdelay +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testlinfit +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testlocalflow +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testmodels +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testnewrefine +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testnoiseamp +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testoscorr +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testpad +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testppgproc +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testrefineonly +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testretro +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testretrolagtcs +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testrolloff +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/examples/src/testsimdata +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_cnn_pytorch/loss.png +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_cnn_pytorch/loss.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_cnn_pytorch/model.pth +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_cnn_pytorch/model_meta.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_revised_tf2/model.keras +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_revised_tf2/model_meta.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_serdar2_tf2/model.keras +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_serdar2_tf2/model_meta.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_serdar_tf2/model.keras +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/models/model_serdar_tf2/model_meta.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ASPECTS_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ASPECTS_2mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ASPECTS_3mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ASPECTS_3mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ASPECTS_regions.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ATTbasedFlowTerritories_split_2mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/ATTbasedFlowTerritories_split_regions.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_lag_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_mask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_sigma_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200_strength_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_MTT_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_binmask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_csf_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_gray_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_graylaghist.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_graylaghist.tsv.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_laghist.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_laghist.tsv.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_mask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_maxcorr_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_maxtime_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_maxwidth_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_negmask_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_timepercentile_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_white_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_whitelaghist.json +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/HCP1200v2_whitelaghist.tsv.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2.xml +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_regions.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1-seg2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1.xml +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_regions.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin2009cAsym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL1_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2.xml +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_regions.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/JHU-ArterialTerritoriesNoVent-LVL2_space-MNI152NLin6Asym_2mm_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_1mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_1mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_2mm_Brain_FAST_seg.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_2mm_Brain_Mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_3mm.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/MNI152_T1_3mm_brain_mask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/data/reference/slicetimes/HCP-YA_slicetimes.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/decorators.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/externaltools.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/fMRIData_class.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/genericmultiproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/multiproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/peakeval.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/qualitycheck.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/__init__.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/adjustoffset.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/aligntcs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/applydlfilter.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/applyppgproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/atlasaverage.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/atlastool.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/calcicc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/calctexticc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/calcttest.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/ccorrica.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/delayvar.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/diffrois.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/endtidalproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/fdica.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/filtnifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/filttc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/fixtr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/gmscalc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/happy.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/happy2std.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/histnifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/histtc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/linfitfilt.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/localflow.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/mergequality.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/pairproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/pairwisemergenifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/physiofreq.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/pixelcomp.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/plethquality.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/polyfitim.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/proj2flow.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/rankimage.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/rapidtide.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/rapidtide2std.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/resamplenifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/resampletc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/retrolagtcs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/retroregress.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/roisummarize.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/runqualitycheck.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showarbcorr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showhist.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showstxcorr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showtc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showxcorr_legacy.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showxcorrx.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/showxy.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/simdata.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/spatialdecomp.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/spatialfit.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/spatialmi.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/spectrogram.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/stupidramtricks.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/synthASL.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/tcfrom2col.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/tcfrom3col.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/temporaldecomp.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/testhrv.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/threeD.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/tidepool.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/scripts/variabilityizer.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/simfuncfit.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/stats.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/.coveragerc +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/__init__.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/cleanposttest +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/happycomp +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/matplotlibrc +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/resethappytargets +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/resetrapidtidetargets +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/resettargets +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/runlocaltest +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/showdirectories +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/showkernels +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_aligntcs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_calcicc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_cleanregressor.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_correlate.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_corrpass.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_delayestimation.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_externaltools.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_findmaxlag.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunhappy_v1.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunhappy_v2.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunhappy_v3.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunhappy_v5.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v1.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v2.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v3.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v4.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v5.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v6.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v7.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_fullrunrapidtide_v8.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_io.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_linfitfiltpass.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_mi.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_miscmath.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_nullcorr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_parserfuncs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_phaseanalysis.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_runmisc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_sharedmem.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_simroundtrip.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_simulate.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_stcorrelate.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_valtoindex.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/test_zRapidtideDataset.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_cardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_info.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_normcardfromfmri_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_normpleth_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_pleth_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/100206_REST1_LR_pleth_dlfiltered_25.0Hz.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/fmri_globalmean.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/happy_phase1target_vesselmask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/happy_phase2output_vesselmask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/happy_target_vesselmask.nii.gz +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/lforegressor.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/lt_rt.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/phasetest.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/rapidtide2x_phase1target_reference_fmrires.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/stcorrtest_Rvalue.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/stcorrtest_delay.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/stcorrtest_mask.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/stcorrtest_pearson.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/stcorrtest_pvalue.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/testdata/testfilt.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/tmp/.placeholder.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/usercustomize.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tests/utils.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate.ui +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_alt.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_alt.ui +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_alt_qt6.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_big.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_big.ui +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_big_qt6.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/tidepoolTemplate_qt6.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/voxelData.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/wiener.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/wiener2.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/__init__.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/aligntcs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/applyppgproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/atlastool.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/calcSimFuncMap.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/calctexticc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/ccorrica.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/cleanregressor.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/endtidalproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/filtnifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/fixtr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/happy2std.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/histtc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/localflow.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/mergequality.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/niftidecomp.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/pairproc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/pairwisemergenifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/polyfitim.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/proj2flow.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/rapidtide2std.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/resamplenifti.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/resampletc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/retrolagtcs.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/runqualitycheck.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showarbcorr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showhist.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showstxcorr.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showtc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/showxy.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/simdata.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/spatialfit.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/spectrogram.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/tcfrom2col.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/tcfrom3col.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/utils.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide/workflows/utils_doc.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide.egg-info/dependency_links.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide.egg-info/entry_points.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide.egg-info/requires.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/rapidtide.egg-info/top_level.txt +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/setup.cfg +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/setup.py +0 -0
- {rapidtide-3.1.1 → rapidtide-3.1.3}/versioneer.py +0 -0
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Release history
|
|
2
2
|
|
|
3
|
+
## Version 3.1.3 (1/21/26)
|
|
4
|
+
* (happy) Made the new pulsatility based vessel finding method the default.
|
|
5
|
+
* (happy) Made the new PPGAttention deep learning filter the default (see dlfiltertorch change).
|
|
6
|
+
* (happy) Dynamically adjust the threshold for the pulsatility mask with some limits on how small the mask is.
|
|
7
|
+
* (happy) Add some new metrics to the runoptions file and the timecourse sidecar files.
|
|
8
|
+
* (happy) Added some sanity checks to make sure cardiac waveform extraction is less likely to fail.
|
|
9
|
+
* (happy) Adjusted the names of some timecourses and output files for consistency.
|
|
10
|
+
* (applydlfilter) Major internal overhaul, making the program more robust.
|
|
11
|
+
* (dlfiltertorch) Added a new model and filter after a chat with Gemini, PPGAttention. There is now a hybrid CNN/LSTM cardiac timecourse filter with attention, and a longer (~5 second) processing window. It seems to be give more stable cardiac waveforms. It's now the default deep learning filter in happy.
|
|
12
|
+
* (dlfiltertorch) Made major changes to how model training works - loss calculation uses batches, there are more filters to exclude bad training data, models can easily incorporate bad points and FFT information.
|
|
13
|
+
* (reference) Added an atlas with the Van Dijk seeds.
|
|
14
|
+
* (package) Fixed a deprecated call to np.sum in fit.py (you can no longer use a generator as an argument).
|
|
15
|
+
* (package) Added a security policy.
|
|
16
|
+
* (package) Accepted some dependabot PRs.
|
|
17
|
+
|
|
18
|
+
## Version 3.1.2 (12/4/25)
|
|
19
|
+
* (rapidtide) Partial fix for https://github.com/bbfrederick/rapidtide/issues/229. You should at least be able to specify filtering properly when the ``--delaymapping`` macro is used. Another shoutout to https://github.com/beccaclements99 for finding this!
|
|
20
|
+
* (happy) Refactored cardiacfromimage (well, Claude did, but I helped).
|
|
21
|
+
* (happy) Made several tweaks and improvements the pytorch implementation of CNNModel to try to improve performance around bad or missing data.
|
|
22
|
+
* (happy) Improved the training workflow for the pytorch implementation of CNNModel.
|
|
23
|
+
* (applydlfilter) Improved the interface to make this more useful as an evaluation tool.
|
|
24
|
+
* (package) Fixed a lot of array allocations and copies to hopefully get a little speed boost.
|
|
25
|
+
* (package) Made several more type hint refinements.
|
|
26
|
+
* (package) Save pyfftw wisdom for faster startup after first run.
|
|
27
|
+
* (package) Optimize the length of a lot of FFTs for faster processing.
|
|
28
|
+
* (package) Accepted some dependabot PRs.
|
|
29
|
+
|
|
3
30
|
## Version 3.1.1 (11/17/25)
|
|
4
31
|
* (rapidtide, retroregress) Correctly output relevant maps when doing CVR processing. Closes https://github.com/bbfrederick/rapidtide/issues/226. Thank you to https://github.com/beccaclements99 for finding this!
|
|
5
32
|
* (rapiditde) Fixed a crashing bug when using PCA to estimate the initial sLFO regressor.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rapidtide
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.3
|
|
4
4
|
Summary: Tools for performing correlation analysis on fMRI data.
|
|
5
5
|
Author: Taylor Salo, Daniel M. Drucker, Ph.D., Jeffrey N Stout, Yaroslav O. Halchenko, Derek Monroe
|
|
6
6
|
Author-email: "Blaise deB. Frederick" <blaise.frederick@gmail.com>
|
|
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
24
|
Requires-Python: >=3.10
|
|
24
25
|
Description-Content-Type: text/x-rst
|
|
25
26
|
License-File: LICENSE
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
Security updates will be applied to the latest version of the software only (source and Docker containers).
|
|
6
|
+
|
|
7
|
+
## Reporting a Vulnerability
|
|
8
|
+
|
|
9
|
+
If you find a security vulnerability, please report it in the "Issues" section with a "bug" tag.
|
|
@@ -1547,7 +1547,7 @@ class OrthoImageItem(QtWidgets.QWidget):
|
|
|
1547
1547
|
) = newColorbar(0, 0, maximpervox, maximpervox, maxdim)
|
|
1548
1548
|
cbim = self.applyLUT(
|
|
1549
1549
|
colorbarvals,
|
|
1550
|
-
(colorbarvals
|
|
1550
|
+
np.ones_like(colorbarvals, "int"),
|
|
1551
1551
|
self.map.theLUT,
|
|
1552
1552
|
0.0,
|
|
1553
1553
|
1.0,
|
|
@@ -234,7 +234,7 @@ class Timecourse:
|
|
|
234
234
|
>>> print(obj.specdata)
|
|
235
235
|
"""
|
|
236
236
|
if self.isbids:
|
|
237
|
-
dummy, dummy, columns, indata, dummy, dummy = tide_io.readbidstsv(self.filename)
|
|
237
|
+
dummy, dummy, columns, indata, dummy, dummy, dummy = tide_io.readbidstsv(self.filename)
|
|
238
238
|
try:
|
|
239
239
|
self.timedata = indata[columns.index(thename), :]
|
|
240
240
|
except ValueError:
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "
|
|
11
|
+
"date": "2026-01-21T11:49:41-0500",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "3.1.
|
|
14
|
+
"full-revisionid": "63ac9a63f9549380f07bf90d8c5f0d80db38bb53",
|
|
15
|
+
"version": "3.1.3"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
@@ -283,7 +283,7 @@ def coherencepass(
|
|
|
283
283
|
packfunc = _packvoxeldata
|
|
284
284
|
unpackfunc = _unpackvoxeldata
|
|
285
285
|
voxeltargets = [coherencefunc, coherencepeakval, coherencepeakfreq]
|
|
286
|
-
voxelmask = fmridata[:, 0]
|
|
286
|
+
voxelmask = np.ones_like(fmridata[:, 0])
|
|
287
287
|
|
|
288
288
|
volumetotal = tide_genericmultiproc.run_multiproc(
|
|
289
289
|
voxelfunc,
|
|
@@ -345,7 +345,7 @@ def correlationpass(
|
|
|
345
345
|
packfunc = _packvoxeldata
|
|
346
346
|
unpackfunc = _unpackvoxeldata
|
|
347
347
|
voxeltargets = [meanval, corrout, thecorrscale, theglobalmaxlist]
|
|
348
|
-
voxelmask = fmridata[:, 0]
|
|
348
|
+
voxelmask = np.ones_like(fmridata[:, 0])
|
|
349
349
|
|
|
350
350
|
volumetotal = tide_genericmultiproc.run_multiproc(
|
|
351
351
|
voxelfunc,
|
|
@@ -25,6 +25,8 @@ import matplotlib.pyplot as plt
|
|
|
25
25
|
import numpy as np
|
|
26
26
|
from numpy.typing import NDArray
|
|
27
27
|
|
|
28
|
+
from rapidtide.ffttools import optfftlen
|
|
29
|
+
|
|
28
30
|
with warnings.catch_warnings():
|
|
29
31
|
warnings.simplefilter("ignore")
|
|
30
32
|
try:
|
|
@@ -40,7 +42,6 @@ from numpy.fft import irfftn, rfftn
|
|
|
40
42
|
from scipy import fftpack, signal
|
|
41
43
|
from sklearn.metrics import mutual_info_score
|
|
42
44
|
|
|
43
|
-
import rapidtide.correlate as tide_corr
|
|
44
45
|
import rapidtide.fit as tide_fit
|
|
45
46
|
import rapidtide.miscmath as tide_math
|
|
46
47
|
import rapidtide.resample as tide_resample
|
|
@@ -873,7 +874,7 @@ def cross_mutual_info(
|
|
|
873
874
|
)
|
|
874
875
|
|
|
875
876
|
if madnorm:
|
|
876
|
-
thexmi_y = tide_math.madnormalize(thexmi_y)
|
|
877
|
+
thexmi_y = tide_math.madnormalize(thexmi_y)[0]
|
|
877
878
|
|
|
878
879
|
if returnaxis:
|
|
879
880
|
if locs is None:
|
|
@@ -1150,11 +1151,11 @@ class AliasedCorrelator:
|
|
|
1150
1151
|
"""
|
|
1151
1152
|
if debug:
|
|
1152
1153
|
print(offset, self.numsteps)
|
|
1153
|
-
osvec = self.hiressignal
|
|
1154
|
+
osvec = np.zeros_like(self.hiressignal)
|
|
1154
1155
|
osvec[offset :: self.numsteps] = loressignal[:]
|
|
1155
|
-
corrfunc =
|
|
1156
|
-
|
|
1157
|
-
)
|
|
1156
|
+
corrfunc = fastcorrelate(tide_math.corrnormalize(osvec), self.hiressignal) * np.sqrt(
|
|
1157
|
+
self.numsteps
|
|
1158
|
+
)
|
|
1158
1159
|
return corrfunc
|
|
1159
1160
|
|
|
1160
1161
|
|
|
@@ -1482,43 +1483,6 @@ def primefacs(thelen: int) -> list:
|
|
|
1482
1483
|
return factors
|
|
1483
1484
|
|
|
1484
1485
|
|
|
1485
|
-
def optfftlen(thelen: int) -> int:
|
|
1486
|
-
"""
|
|
1487
|
-
Calculate optimal FFT length for given input length.
|
|
1488
|
-
|
|
1489
|
-
This function currently returns the input length as-is, but is designed
|
|
1490
|
-
to be extended for optimal FFT length calculation based on hardware
|
|
1491
|
-
constraints or performance considerations.
|
|
1492
|
-
|
|
1493
|
-
Parameters
|
|
1494
|
-
----------
|
|
1495
|
-
thelen : int
|
|
1496
|
-
The input length for which to calculate optimal FFT length.
|
|
1497
|
-
Must be a positive integer.
|
|
1498
|
-
|
|
1499
|
-
Returns
|
|
1500
|
-
-------
|
|
1501
|
-
int
|
|
1502
|
-
The optimal FFT length. For the current implementation, this
|
|
1503
|
-
simply returns the input `thelen` value.
|
|
1504
|
-
|
|
1505
|
-
Notes
|
|
1506
|
-
-----
|
|
1507
|
-
In a more complete implementation, this function would calculate
|
|
1508
|
-
the optimal FFT length by finding the smallest number >= thelen
|
|
1509
|
-
that has only small prime factors (2, 3, 5, 7) for optimal
|
|
1510
|
-
performance on most FFT implementations.
|
|
1511
|
-
|
|
1512
|
-
Examples
|
|
1513
|
-
--------
|
|
1514
|
-
>>> optfftlen(1024)
|
|
1515
|
-
1024
|
|
1516
|
-
>>> optfftlen(1000)
|
|
1517
|
-
1000
|
|
1518
|
-
"""
|
|
1519
|
-
return thelen
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
1486
|
def fastcorrelate(
|
|
1523
1487
|
input1: NDArray,
|
|
1524
1488
|
input2: NDArray,
|
|
@@ -10,7 +10,7 @@ from statsmodels.tsa.ar_model import AutoReg
|
|
|
10
10
|
import rapidtide.io as tide_io
|
|
11
11
|
|
|
12
12
|
debug = True
|
|
13
|
-
insamplerate, instarttime, incolumns, indata, incompressed, incolsource = tide_io.readbidstsv(
|
|
13
|
+
insamplerate, instarttime, incolumns, indata, incompressed, incolsource, inextrainfo = tide_io.readbidstsv(
|
|
14
14
|
"../dst/sub-RAPIDTIDETEST_desc-oversampledmovingregressor_timeseries.json",
|
|
15
15
|
neednotexist=False,
|
|
16
16
|
debug=debug,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
MACHINE=$(uname -a | awk '{print $2}')
|
|
4
|
+
if [ ${MACHINE} == "mickey" ]; then
|
|
5
|
+
echo "running on mickey"
|
|
6
|
+
ROOT=/home/frederic/code/rapidtide/rapidtide
|
|
7
|
+
else
|
|
8
|
+
echo "not running on mickey"
|
|
9
|
+
ROOT=/Users/frederic/code/rapidtide/rapidtide
|
|
10
|
+
fi
|
|
11
|
+
|
|
12
|
+
MODELROOT=${ROOT}/experimental
|
|
13
|
+
MODELROOT=${ROOT}/data/models
|
|
14
|
+
|
|
15
|
+
cd ${MODELROOT}
|
|
16
|
+
for MODEL in model_*_pytorch*
|
|
17
|
+
do
|
|
18
|
+
echo model: ${MODELROOT}/${MODEL}
|
|
19
|
+
applydlfilter \
|
|
20
|
+
${ROOT}/data/examples/src/happy_desc-stdrescardfromfmri_timeseries.json \
|
|
21
|
+
${ROOT}/data/examples/dst/${MODEL}_filtered \
|
|
22
|
+
--model ${MODELROOT}/${MODEL}
|
|
23
|
+
echo
|
|
24
|
+
echo
|
|
25
|
+
done
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
rm -f fft_timings
|
|
4
|
+
touch fft_timings
|
|
5
|
+
for RUN in INIT REPEAT
|
|
6
|
+
do
|
|
7
|
+
for EFFORT in FFTW_ESTIMATE FFTW_MEASURE FFTW_PATIENT FFTW_EXHAUSTIVE
|
|
8
|
+
do
|
|
9
|
+
export PYFFTW_PLANNER_EFFORT=${EFFORT}
|
|
10
|
+
rapidtide \
|
|
11
|
+
--spatialfilt 2.5 \
|
|
12
|
+
--nprocs -1 \
|
|
13
|
+
--searchrange -7.5 30 \
|
|
14
|
+
--simcalcrange 50 -1 \
|
|
15
|
+
--outputlevel more \
|
|
16
|
+
--graymattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_GRAY \
|
|
17
|
+
--brainmask sub-RAPIDTIDETEST_brainmask.nii.gz \
|
|
18
|
+
--whitemattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_WHITE \
|
|
19
|
+
--csfmask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_CSF \
|
|
20
|
+
--cleanrefined \
|
|
21
|
+
--nofitfilt \
|
|
22
|
+
sub-RAPIDTIDETEST.nii.gz \
|
|
23
|
+
../dst/sub-RAPIDTIDETEST_${RUN}_${EFFORT}
|
|
24
|
+
RUNTIME=`grep Done ../dst/sub-RAPIDTIDETEST_${RUN}_${EFFORT}_desc-formattedruntimings_info.tsv | awk '{print $1}'`
|
|
25
|
+
echo rapidtide ${RUN} ${EFFORT} ${RUNTIME} >> fft_timings
|
|
26
|
+
happy \
|
|
27
|
+
sub-HAPPYTEST.nii.gz \
|
|
28
|
+
sub-HAPPYTEST.json \
|
|
29
|
+
../dst/sub-HAPPYTEST_${RUN}_${EFFORT} \
|
|
30
|
+
--usenewvesselmethod \
|
|
31
|
+
--nprocs -1
|
|
32
|
+
RUNTIME=`grep Done ../dst/sub-HAPPYTEST_${RUN}_${EFFORT}_runtimings.txt | awk '{print $2}'`
|
|
33
|
+
echo happy ${RUN} ${EFFORT} ${RUNTIME} >> fft_timings
|
|
34
|
+
done
|
|
35
|
+
done
|
|
@@ -37,35 +37,52 @@
|
|
|
37
37
|
# ../dst/sub-RAPIDTIDETEST_single
|
|
38
38
|
|
|
39
39
|
rapidtide \
|
|
40
|
-
--spatialfilt
|
|
40
|
+
--spatialfilt -1 \
|
|
41
41
|
--nprocs -1 \
|
|
42
42
|
--searchrange -7.5 30 \
|
|
43
43
|
--simcalcrange 50 -1 \
|
|
44
|
-
--outputlevel
|
|
44
|
+
--outputlevel normal \
|
|
45
45
|
--graymattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_GRAY \
|
|
46
46
|
--brainmask sub-RAPIDTIDETEST_brainmask.nii.gz \
|
|
47
47
|
--whitemattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_WHITE \
|
|
48
48
|
--csfmask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_CSF \
|
|
49
49
|
--cleanrefined \
|
|
50
50
|
--nofitfilt \
|
|
51
|
-
--
|
|
51
|
+
--filterfreqs 0.009 0.025 \
|
|
52
52
|
sub-RAPIDTIDETEST.nii.gz \
|
|
53
|
-
../dst/sub-
|
|
53
|
+
../dst/sub-RAPIDTIDETEST_band1
|
|
54
54
|
|
|
55
55
|
rapidtide \
|
|
56
|
-
--
|
|
57
|
-
--spatialfilt 2.5 \
|
|
56
|
+
--spatialfilt -1 \
|
|
58
57
|
--nprocs -1 \
|
|
59
58
|
--searchrange -7.5 30 \
|
|
60
59
|
--simcalcrange 50 -1 \
|
|
61
|
-
--outputlevel
|
|
60
|
+
--outputlevel normal \
|
|
62
61
|
--graymattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_GRAY \
|
|
63
62
|
--brainmask sub-RAPIDTIDETEST_brainmask.nii.gz \
|
|
64
63
|
--whitemattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_WHITE \
|
|
65
64
|
--csfmask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_CSF \
|
|
66
|
-
--
|
|
65
|
+
--cleanrefined \
|
|
66
|
+
--nofitfilt \
|
|
67
|
+
--filterfreqs 0.025 0.075 \
|
|
68
|
+
sub-RAPIDTIDETEST.nii.gz \
|
|
69
|
+
../dst/sub-RAPIDTIDETEST_band2
|
|
70
|
+
|
|
71
|
+
rapidtide \
|
|
72
|
+
--spatialfilt -1 \
|
|
73
|
+
--nprocs -1 \
|
|
74
|
+
--searchrange -7.5 30 \
|
|
75
|
+
--simcalcrange 50 -1 \
|
|
76
|
+
--outputlevel normal \
|
|
77
|
+
--graymattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_GRAY \
|
|
78
|
+
--brainmask sub-RAPIDTIDETEST_brainmask.nii.gz \
|
|
79
|
+
--whitemattermask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_WHITE \
|
|
80
|
+
--csfmask sub-RAPIDTIDETEST_synthseg.nii.gz:SSEG_CSF \
|
|
81
|
+
--cleanrefined \
|
|
82
|
+
--nofitfilt \
|
|
83
|
+
--filterfreqs 0.075 0.15 \
|
|
67
84
|
sub-RAPIDTIDETEST.nii.gz \
|
|
68
|
-
../dst/
|
|
85
|
+
../dst/sub-RAPIDTIDETEST_band3
|
|
69
86
|
|
|
70
87
|
#rapidtide \
|
|
71
88
|
#--spatialfilt 2.5 \
|
|
@@ -31,8 +31,8 @@ def test_funcs(displayplots=False, debug=False):
|
|
|
31
31
|
loc = 5.0
|
|
32
32
|
baseline = 0.0
|
|
33
33
|
|
|
34
|
-
gaussvals = xvals
|
|
35
|
-
sincvals = xvals
|
|
34
|
+
gaussvals = np.zeros_like(xvals)
|
|
35
|
+
sincvals = np.zeros_like(xvals)
|
|
36
36
|
|
|
37
37
|
for i in range(len(xvals)):
|
|
38
38
|
gaussvals[i] = tide_fit.gaussfunc(xvals[i], height, loc, width)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
model_cnn_pytorch_w064_l49_fn50_fl03_e060_t4.0_ctrp0.72_ctpp0.9_s20_d1_relu_normaligned: Prediction Error: 1.0830276246862416 Raw Error: 0.33336388789068977
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dofft":false,
|
|
3
|
+
"dropout_rate":0.3,
|
|
4
|
+
"excludethresh":4.0,
|
|
5
|
+
"loss":[
|
|
6
|
+
0.22925521885564165,
|
|
7
|
+
0.15040961737897177,
|
|
8
|
+
0.14268971570993907,
|
|
9
|
+
0.14219110230713775,
|
|
10
|
+
0.14273858040407764,
|
|
11
|
+
0.14329195272751802,
|
|
12
|
+
0.13928091243626795,
|
|
13
|
+
0.14068480696367971,
|
|
14
|
+
0.1385358095096423,
|
|
15
|
+
0.13970852336783296,
|
|
16
|
+
0.13810691918035894,
|
|
17
|
+
0.1404137746416745,
|
|
18
|
+
0.13854313506940602,
|
|
19
|
+
0.14182642129483128,
|
|
20
|
+
0.14299408271500136,
|
|
21
|
+
0.14058016741842413,
|
|
22
|
+
0.13913112028407149,
|
|
23
|
+
0.13878587036780074,
|
|
24
|
+
0.13706604688724028,
|
|
25
|
+
0.1376387963456253,
|
|
26
|
+
0.13737647986353932,
|
|
27
|
+
0.13863239970369212,
|
|
28
|
+
0.1410437045638188,
|
|
29
|
+
0.14107140852847816,
|
|
30
|
+
0.1429191263872701,
|
|
31
|
+
0.140100968294504,
|
|
32
|
+
0.13919491044346113,
|
|
33
|
+
0.14390571855830392,
|
|
34
|
+
0.14651084108769638,
|
|
35
|
+
0.1433918024983659,
|
|
36
|
+
0.1403088819128867
|
|
37
|
+
],
|
|
38
|
+
"modelname":"model_cnn_pytorch_w064_l49_fn50_fl03_e060_t4.0_ctrp0.72_ctpp0.9_s20_d1_relu_normaligned",
|
|
39
|
+
"nettype":"cnn",
|
|
40
|
+
"num_epochs":60,
|
|
41
|
+
"num_layers":49,
|
|
42
|
+
"prediction_error":1.0830276246862416,
|
|
43
|
+
"raw_error":0.33336388789068977,
|
|
44
|
+
"train_arch":"darwin",
|
|
45
|
+
"usebadpts":false,
|
|
46
|
+
"val_loss":[
|
|
47
|
+
0.1377475274015227,
|
|
48
|
+
0.12717686890830668,
|
|
49
|
+
0.1327820896304727,
|
|
50
|
+
0.12687221628108453,
|
|
51
|
+
0.12607483420783877,
|
|
52
|
+
0.12648945965253525,
|
|
53
|
+
0.12313199396768626,
|
|
54
|
+
0.12226768233190198,
|
|
55
|
+
0.12210728692167287,
|
|
56
|
+
0.12372999661885328,
|
|
57
|
+
0.12175265275431375,
|
|
58
|
+
0.12386484445954181,
|
|
59
|
+
0.12322459757835616,
|
|
60
|
+
0.12405382936090739,
|
|
61
|
+
0.1248115716080596,
|
|
62
|
+
0.12438175868959032,
|
|
63
|
+
0.12480991328284688,
|
|
64
|
+
0.12192986952707426,
|
|
65
|
+
0.12283100156960987,
|
|
66
|
+
0.12229406947854661,
|
|
67
|
+
0.12122222204713055,
|
|
68
|
+
0.12669712770956856,
|
|
69
|
+
0.12392318618558619,
|
|
70
|
+
0.1278157098413674,
|
|
71
|
+
0.12489235555240998,
|
|
72
|
+
0.1233060919201577,
|
|
73
|
+
0.1265343064193018,
|
|
74
|
+
0.1279798898564928,
|
|
75
|
+
0.12721927373368663,
|
|
76
|
+
0.12591350296117965,
|
|
77
|
+
0.12265568407855185
|
|
78
|
+
],
|
|
79
|
+
"window_size":64
|
|
80
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
model_cnn_pytorch_w064_l19_fn50_fl03_e060_t4.0_ctrp0.72_ctpp0.9_s20_d1_relu_usebadpts_normaligned: Prediction Error: 1.1423442247191324 Raw Error: 0.6187115227982535
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dofft":false,
|
|
3
|
+
"dropout_rate":0.3,
|
|
4
|
+
"excludethresh":4.0,
|
|
5
|
+
"loss":[
|
|
6
|
+
0.16054571611099602,
|
|
7
|
+
0.13546756337159005,
|
|
8
|
+
0.13215572643505227,
|
|
9
|
+
0.13050649818634566,
|
|
10
|
+
0.12948713903380632,
|
|
11
|
+
0.12871664774301647,
|
|
12
|
+
0.128181485451263,
|
|
13
|
+
0.1277200047796198,
|
|
14
|
+
0.1273626328232011,
|
|
15
|
+
0.1271003020438096,
|
|
16
|
+
0.12689753241796162,
|
|
17
|
+
0.12663772386668443,
|
|
18
|
+
0.12643535217720878,
|
|
19
|
+
0.12628400582300317,
|
|
20
|
+
0.1261125276368032,
|
|
21
|
+
0.12603859817251645,
|
|
22
|
+
0.12595296820022941,
|
|
23
|
+
0.12587096519418636,
|
|
24
|
+
0.12575434292238127,
|
|
25
|
+
0.1256634983927066,
|
|
26
|
+
0.1255449541299028,
|
|
27
|
+
0.12548707229908757,
|
|
28
|
+
0.1253822510250453,
|
|
29
|
+
0.12531118860864407,
|
|
30
|
+
0.12525491605329483,
|
|
31
|
+
0.125216001094223,
|
|
32
|
+
0.12515760357063185,
|
|
33
|
+
0.12512194123266673,
|
|
34
|
+
0.12505986245484121,
|
|
35
|
+
0.12503619477525127,
|
|
36
|
+
0.12497749091974487,
|
|
37
|
+
0.1249577054557533,
|
|
38
|
+
0.12489709954556716,
|
|
39
|
+
0.12485679918712846,
|
|
40
|
+
0.12481991270197229,
|
|
41
|
+
0.12476553159069535,
|
|
42
|
+
0.12477480930246136,
|
|
43
|
+
0.1247378216283413,
|
|
44
|
+
0.1246675946576649,
|
|
45
|
+
0.12467995697790206,
|
|
46
|
+
0.12466000751033199,
|
|
47
|
+
0.1246082399909922,
|
|
48
|
+
0.12456629825738928,
|
|
49
|
+
0.12459073984844521,
|
|
50
|
+
0.12455508250931571,
|
|
51
|
+
0.124506067396082,
|
|
52
|
+
0.12449822512652219,
|
|
53
|
+
0.12446901196753521,
|
|
54
|
+
0.12449990551167331,
|
|
55
|
+
0.12443538765167042,
|
|
56
|
+
0.12441976367519222,
|
|
57
|
+
0.12440848543032286,
|
|
58
|
+
0.12439055654114155,
|
|
59
|
+
0.12435277748460236,
|
|
60
|
+
0.12430889060917168,
|
|
61
|
+
0.12432925681890619,
|
|
62
|
+
0.12434658295112293,
|
|
63
|
+
0.1265990397030809,
|
|
64
|
+
0.1251383163239228,
|
|
65
|
+
0.12454580038894901
|
|
66
|
+
],
|
|
67
|
+
"modelname":"model_cnn_pytorch_w064_l19_fn50_fl03_e060_t4.0_ctrp0.72_ctpp0.9_s20_d1_relu_usebadpts_normaligned",
|
|
68
|
+
"nettype":"cnn",
|
|
69
|
+
"num_epochs":60,
|
|
70
|
+
"num_layers":19,
|
|
71
|
+
"prediction_error":1.1423442247191324,
|
|
72
|
+
"raw_error":0.6187115227982535,
|
|
73
|
+
"train_arch":"darwin",
|
|
74
|
+
"usebadpts":true,
|
|
75
|
+
"val_loss":[
|
|
76
|
+
0.12312150447473039,
|
|
77
|
+
0.12013360638615568,
|
|
78
|
+
0.11886797573444617,
|
|
79
|
+
0.11757324126587587,
|
|
80
|
+
0.11667520647138865,
|
|
81
|
+
0.11696510642331882,
|
|
82
|
+
0.11684189646203443,
|
|
83
|
+
0.11560199656263175,
|
|
84
|
+
0.11553569087291866,
|
|
85
|
+
0.11535360939673844,
|
|
86
|
+
0.11527672953849291,
|
|
87
|
+
0.11537873192062634,
|
|
88
|
+
0.11502408845363742,
|
|
89
|
+
0.11472811703989395,
|
|
90
|
+
0.11470630097853296,
|
|
91
|
+
0.11434133457803958,
|
|
92
|
+
0.11497286922885264,
|
|
93
|
+
0.11462231696449637,
|
|
94
|
+
0.11433358347256398,
|
|
95
|
+
0.11444493928819967,
|
|
96
|
+
0.11472061497596639,
|
|
97
|
+
0.11413280776454875,
|
|
98
|
+
0.11428350130426913,
|
|
99
|
+
0.11415910079096356,
|
|
100
|
+
0.11400606766016814,
|
|
101
|
+
0.11424847541789358,
|
|
102
|
+
0.11419284648268763,
|
|
103
|
+
0.11400555115909182,
|
|
104
|
+
0.11400417637288425,
|
|
105
|
+
0.11380187170058852,
|
|
106
|
+
0.11385239495775705,
|
|
107
|
+
0.11382375739134142,
|
|
108
|
+
0.11351290678745929,
|
|
109
|
+
0.11371483351047312,
|
|
110
|
+
0.11410785986704258,
|
|
111
|
+
0.11394959615674913,
|
|
112
|
+
0.11347735578923909,
|
|
113
|
+
0.11358789135214765,
|
|
114
|
+
0.11382087740657393,
|
|
115
|
+
0.11378636305422099,
|
|
116
|
+
0.11390937074402532,
|
|
117
|
+
0.11361835675808055,
|
|
118
|
+
0.11362365972241636,
|
|
119
|
+
0.11363612271283374,
|
|
120
|
+
0.11353648120396909,
|
|
121
|
+
0.1133866085514535,
|
|
122
|
+
0.1136611221661823,
|
|
123
|
+
0.1133526935085763,
|
|
124
|
+
0.11348296575012579,
|
|
125
|
+
0.11335823829954268,
|
|
126
|
+
0.11333816431444636,
|
|
127
|
+
0.11322543960418144,
|
|
128
|
+
0.11345730859722825,
|
|
129
|
+
0.1132890198135028,
|
|
130
|
+
0.11383766369155433,
|
|
131
|
+
0.11355680825501463,
|
|
132
|
+
0.11379524541524785,
|
|
133
|
+
0.11439661578322849,
|
|
134
|
+
0.11377235677845576,
|
|
135
|
+
0.11343978080726308
|
|
136
|
+
],
|
|
137
|
+
"window_size":64
|
|
138
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
model_cnn_pytorch_w064_l35_fn60_fl05_e075_t4.0_ctrp0.72_ctpp0.9_s19_d1_relu_dofft_normaligned: Prediction Error: 0.10174320227417619 Raw Error: 2.0149830144767074
|