Skip to content

Commit

Permalink
Update invoker_estimate_noise_cov_matrix.py
Browse files Browse the repository at this point in the history
  • Loading branch information
neukym committed Jan 12, 2024
1 parent 7cf2e78 commit 4c16649
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion invokers/invoker_estimate_noise_cov_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ def main():
else:
raise Exception("The 'data_location' parameter in the config file must be either 'cbu' or 'local' or 'cbu-local'.")

estimate_noise_cov(data_root_dir, config)
estimate_noise_cov( data_root_dir = data_root_dir,
emeg_machine_used_to_record_data = config['emeg_machine_used_to_record_data'],
list_of_participants = config['list_of_participants'],
dataset_directory_name = config['dataset_directory_name'],
n_runs = config['number_of_runs'],
cov_method = config['cov_method']
)

if __name__ == '__main__':
main()

0 comments on commit 4c16649

Please sign in to comment.