diff --git a/Dataset/README.md b/Dataset/README.md index 7bf9610..3cfc1d7 100644 --- a/Dataset/README.md +++ b/Dataset/README.md @@ -1,2 +1,2 @@ This folder should hold the n170 dataset. -Put the dataset here, so that the file structure: 'Dataset/n170/...' exists. \ No newline at end of file +Unpack the dataset here, so that the file structure: 'Dataset/n170/...' exists. \ No newline at end of file diff --git a/cached_data/decoding_data/.gitignore b/cached_data/decoding_data/.gitignore new file mode 100644 index 0000000..86d0cb2 --- /dev/null +++ b/cached_data/decoding_data/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore \ No newline at end of file diff --git a/cached_data/erp_peaks/.gitignore b/cached_data/erp_peaks/.gitignore new file mode 100644 index 0000000..86d0cb2 --- /dev/null +++ b/cached_data/erp_peaks/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore \ No newline at end of file diff --git a/cached_data/tf_data/.gitignore b/cached_data/tf_data/.gitignore new file mode 100644 index 0000000..86d0cb2 --- /dev/null +++ b/cached_data/tf_data/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore \ No newline at end of file diff --git a/erp_analysis.py b/erp_analysis.py index 9d671b7..e3049ea 100644 --- a/erp_analysis.py +++ b/erp_analysis.py @@ -130,5 +130,5 @@ def analyze_erp(channels): if __name__ == '__main__': mne.set_log_level(verbose=VERBOSE_LEVEL) - # precompute_erp_df('N170') + precompute_erp_df('N170') analyze_erp(['P7', 'PO7', 'P8', 'PO8']) diff --git a/preprocessing_and_cleaning.py b/preprocessing_and_cleaning.py index 62ccf04..24f461e 100644 --- a/preprocessing_and_cleaning.py +++ b/preprocessing_and_cleaning.py @@ -119,8 +119,6 @@ def run_ica(raw, dataset, subject, search='manual'): if search == 'manual': ica_raw.load_data() - # ica.plot_components(inst=ica_raw, ch_type='eeg', contours=0, topomap_args={'extrapolate': 'head'}, - # psd_args={'fmin': 0, 'fmax': 80}) ica.plot_properties(inst=ica_raw, dB=False, topomap_args={'extrapolate': 'head', 'contours': 0}, psd_args={'fmin': 0, 'fmax': 50}, picks=['eeg']) ica.plot_sources(ica_raw)