├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── images └── data_diagram.svg ├── requirements.txt ├── task1_match_mismatch ├── __init__.py ├── create_data │ ├── speech_features.py │ └── split_and_normalize.py ├── experiments │ ├── __init__.py │ ├── dilated_convolutional_model.py │ └── predict_test.py ├── models │ ├── __init__.py │ └── dilated_convolutional_model.py └── util │ ├── __init__.py │ ├── config.json │ ├── dataset_generator.py │ ├── envelope.py │ └── mel_spectrogram.py ├── task2_regression ├── __init__.py ├── create_data │ ├── speech_features.py │ └── split_and_normalize.py ├── experiments │ ├── __init__.py │ ├── linear_baseline.py │ ├── predict_test.py │ └── vlaai.py ├── models │ ├── __init__.py │ ├── linear.py │ └── vlaai.py └── util │ ├── __init__.py │ ├── config.json │ ├── dataset_generator.py │ ├── envelope.py │ ├── time_lags.py │ └── window.py └── test_scripts ├── labels_match_mismatch ├── sub-002.json ├── sub-003.json ├── sub-004.json ├── sub-005.json ├── sub-006.json ├── sub-007.json ├── sub-008.json ├── sub-009.json ├── sub-010.json ├── sub-011.json ├── sub-012.json ├── sub-013.json ├── sub-014.json ├── sub-015.json ├── sub-016.json ├── sub-017.json ├── sub-018.json ├── sub-019.json ├── sub-020.json ├── sub-021.json ├── sub-022.json ├── sub-023.json ├── sub-024.json ├── sub-025.json ├── sub-026.json ├── sub-027.json ├── sub-028.json ├── sub-029.json ├── sub-030.json ├── sub-031.json ├── sub-032.json ├── sub-033.json ├── sub-034.json ├── sub-035.json ├── sub-036.json ├── sub-037.json ├── sub-038.json ├── sub-039.json ├── sub-040.json ├── sub-041.json ├── sub-042.json ├── sub-043.json ├── sub-044.json ├── sub-045.json ├── sub-046.json ├── sub-047.json ├── sub-048.json ├── sub-049.json ├── sub-050.json ├── sub-051.json ├── sub-052.json ├── sub-053.json ├── sub-054.json ├── sub-055.json ├── sub-056.json ├── sub-057.json ├── sub-058.json ├── sub-059.json ├── sub-060.json ├── sub-061.json ├── sub-062.json ├── sub-063.json ├── sub-064.json ├── sub-065.json ├── sub-066.json ├── sub-067.json ├── sub-068.json ├── sub-069.json ├── sub-070.json ├── sub-071.json ├── sub-072.json ├── sub-073.json ├── sub-074.json ├── sub-075.json ├── sub-076.json ├── sub-077.json ├── sub-078.json ├── sub-079.json ├── sub-080.json ├── sub-081.json ├── sub-082.json ├── sub-083.json ├── sub-084.json └── sub-085.json ├── labels_regression ├── sub-002.json ├── sub-003.json ├── sub-004.json ├── sub-005.json ├── sub-006.json ├── sub-007.json ├── sub-008.json ├── sub-009.json ├── sub-010.json ├── sub-011.json ├── sub-012.json ├── sub-013.json ├── sub-014.json ├── sub-015.json ├── sub-016.json ├── sub-017.json ├── sub-018.json ├── sub-019.json ├── sub-020.json ├── sub-021.json ├── sub-022.json ├── sub-023.json ├── sub-024.json ├── sub-025.json ├── sub-026.json ├── sub-027.json ├── sub-028.json ├── sub-029.json ├── sub-030.json ├── sub-031.json ├── sub-032.json ├── sub-033.json ├── sub-034.json ├── sub-035.json ├── sub-036.json ├── sub-037.json ├── sub-038.json ├── sub-039.json ├── sub-040.json ├── sub-041.json ├── sub-042.json ├── sub-043.json ├── sub-044.json ├── sub-045.json ├── sub-046.json ├── sub-047.json ├── sub-048.json ├── sub-049.json ├── sub-050.json ├── sub-051.json ├── sub-052.json ├── sub-053.json ├── sub-054.json ├── sub-055.json ├── sub-056.json ├── sub-057.json ├── sub-058.json ├── sub-059.json ├── sub-060.json ├── sub-061.json ├── sub-062.json ├── sub-063.json ├── sub-064.json ├── sub-065.json ├── sub-066.json ├── sub-067.json ├── sub-068.json ├── sub-069.json ├── sub-070.json ├── sub-071.json ├── sub-072.json ├── sub-073.json ├── sub-074.json ├── sub-075.json ├── sub-076.json ├── sub-077.json ├── sub-078.json ├── sub-079.json ├── sub-080.json ├── sub-081.json ├── sub-082.json ├── sub-083.json ├── sub-084.json └── sub-085.json ├── score_match_mismatch.py └── score_regression.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | """Code for the ICASSP 2023 auditory eeg challenge.""" 2 | -------------------------------------------------------------------------------- /images/data_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/images/data_diagram.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/requirements.txt -------------------------------------------------------------------------------- /task1_match_mismatch/__init__.py: -------------------------------------------------------------------------------- 1 | """Code for task 1 of the Auditory EEG ICASSP challenge.""" 2 | -------------------------------------------------------------------------------- /task1_match_mismatch/create_data/speech_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/create_data/speech_features.py -------------------------------------------------------------------------------- /task1_match_mismatch/create_data/split_and_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/create_data/split_and_normalize.py -------------------------------------------------------------------------------- /task1_match_mismatch/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | """Experiments for task1.""" 2 | -------------------------------------------------------------------------------- /task1_match_mismatch/experiments/dilated_convolutional_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/experiments/dilated_convolutional_model.py -------------------------------------------------------------------------------- /task1_match_mismatch/experiments/predict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/experiments/predict_test.py -------------------------------------------------------------------------------- /task1_match_mismatch/models/__init__.py: -------------------------------------------------------------------------------- 1 | """Models for task1.""" 2 | -------------------------------------------------------------------------------- /task1_match_mismatch/models/dilated_convolutional_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/models/dilated_convolutional_model.py -------------------------------------------------------------------------------- /task1_match_mismatch/util/__init__.py: -------------------------------------------------------------------------------- 1 | """Utilities for task1.""" 2 | -------------------------------------------------------------------------------- /task1_match_mismatch/util/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/util/config.json -------------------------------------------------------------------------------- /task1_match_mismatch/util/dataset_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/util/dataset_generator.py -------------------------------------------------------------------------------- /task1_match_mismatch/util/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/util/envelope.py -------------------------------------------------------------------------------- /task1_match_mismatch/util/mel_spectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task1_match_mismatch/util/mel_spectrogram.py -------------------------------------------------------------------------------- /task2_regression/__init__.py: -------------------------------------------------------------------------------- 1 | """Code for task 2 of the Auditory EEG ICASSP challenge.""" 2 | -------------------------------------------------------------------------------- /task2_regression/create_data/speech_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/create_data/speech_features.py -------------------------------------------------------------------------------- /task2_regression/create_data/split_and_normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/create_data/split_and_normalize.py -------------------------------------------------------------------------------- /task2_regression/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | """Experiments for task2.""" 2 | -------------------------------------------------------------------------------- /task2_regression/experiments/linear_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/experiments/linear_baseline.py -------------------------------------------------------------------------------- /task2_regression/experiments/predict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/experiments/predict_test.py -------------------------------------------------------------------------------- /task2_regression/experiments/vlaai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/experiments/vlaai.py -------------------------------------------------------------------------------- /task2_regression/models/__init__.py: -------------------------------------------------------------------------------- 1 | """Models for task2.""" 2 | -------------------------------------------------------------------------------- /task2_regression/models/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/models/linear.py -------------------------------------------------------------------------------- /task2_regression/models/vlaai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/models/vlaai.py -------------------------------------------------------------------------------- /task2_regression/util/__init__.py: -------------------------------------------------------------------------------- 1 | """Utilities for task2.""" 2 | -------------------------------------------------------------------------------- /task2_regression/util/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/util/config.json -------------------------------------------------------------------------------- /task2_regression/util/dataset_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/util/dataset_generator.py -------------------------------------------------------------------------------- /task2_regression/util/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/util/envelope.py -------------------------------------------------------------------------------- /task2_regression/util/time_lags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/util/time_lags.py -------------------------------------------------------------------------------- /task2_regression/util/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/task2_regression/util/window.py -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-002.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-003.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-004.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-005.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-006.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-007.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-008.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-009.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-010.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-011.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-012.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-013.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-014.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-015.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-016.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-017.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-018.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-019.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-020.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-021.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-022.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-023.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-024.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-025.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-026.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-027.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-028.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-029.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-030.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-031.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-032.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-033.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-034.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-035.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-036.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-036.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-037.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-038.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-038.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-039.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-040.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-041.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-042.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-043.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-044.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-045.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-045.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-046.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-047.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-048.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-049.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-050.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-051.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-052.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-053.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-053.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-054.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-054.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-055.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-055.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-056.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-057.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-058.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-058.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-059.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-060.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-061.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-062.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-063.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-064.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-065.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-065.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-066.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-067.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-067.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-068.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-069.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-069.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-070.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-070.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-071.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-072.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-073.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-074.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-075.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-075.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-076.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-076.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-077.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-078.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-079.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-080.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-081.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-082.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-083.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-084.json -------------------------------------------------------------------------------- /test_scripts/labels_match_mismatch/sub-085.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_match_mismatch/sub-085.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-002.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-003.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-004.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-005.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-006.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-007.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-008.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-009.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-010.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-011.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-012.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-013.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-014.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-015.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-016.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-017.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-018.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-019.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-020.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-021.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-022.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-023.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-024.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-025.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-025.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-026.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-027.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-028.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-029.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-030.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-031.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-032.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-033.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-034.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-035.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-036.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-036.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-037.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-038.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-038.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-039.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-040.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-041.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-042.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-043.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-044.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-045.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-045.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-046.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-047.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-048.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-049.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-050.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-050.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-051.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-051.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-052.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-053.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-053.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-054.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-054.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-055.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-055.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-056.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-057.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-058.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-058.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-059.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-060.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-061.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-062.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-063.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-064.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-065.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-065.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-066.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-067.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-067.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-068.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-069.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-069.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-070.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-070.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-071.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-072.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-072.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-073.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-074.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-075.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-075.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-076.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-076.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-077.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-078.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-079.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-080.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-081.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-082.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-082.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-083.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-084.json -------------------------------------------------------------------------------- /test_scripts/labels_regression/sub-085.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/labels_regression/sub-085.json -------------------------------------------------------------------------------- /test_scripts/score_match_mismatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/score_match_mismatch.py -------------------------------------------------------------------------------- /test_scripts/score_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exporl/auditory-eeg-challenge-2023-code/HEAD/test_scripts/score_regression.py --------------------------------------------------------------------------------