Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing the default arguments in the gridsearch #180

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions invokers/run_gridsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def main():
help='inverse solution path')
parser.add_argument('--inverse-operator-suffix', type=str, default="_ico5-3L-loose02-cps-nodepth-fusion-inv.fif",
help='inverse solution suffix')
parser.add_argument('--seconds-per-split', type=float, default=0.5,
parser.add_argument('--seconds-per-split', type=float, default=1,
help='seconds in each split of the recording, also maximum range of latencies being checked')
parser.add_argument('--n-splits', type=int, default=800,
parser.add_argument('--n-splits', type=int, default=400,
help='number of splits to split the recording into, (set to 400/seconds_per_split for full file)')
parser.add_argument('--n-derangements', type=int, default=1,
help='number of deragements for the null distribution')
parser.add_argument('--start-latency', type=float, default=-100,
parser.add_argument('--start-latency', type=float, default=-200,
help='earliest latency to check in cross correlation')
parser.add_argument('--emeg-t-start', type=float, default=-200,
help='start of the emeg evoked files relative to the start of the function')
Expand Down
Loading