├── .gitignore ├── LICENSE ├── README.md ├── create_features.ipynb ├── create_labels.ipynb ├── cross_subject_de.ipynb ├── cross_subject_multitaper.ipynb ├── cross_subject_welch.ipynb ├── data ├── emotion_labels.npy ├── participants_sessions_vector.npy └── participants_vector.npy ├── requirements.txt └── src ├── feat_extraction.py ├── nn.py ├── nn_batch.py ├── nn_stratified.py ├── norm_functions.py └── train_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/README.md -------------------------------------------------------------------------------- /create_features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/create_features.ipynb -------------------------------------------------------------------------------- /create_labels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/create_labels.ipynb -------------------------------------------------------------------------------- /cross_subject_de.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/cross_subject_de.ipynb -------------------------------------------------------------------------------- /cross_subject_multitaper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/cross_subject_multitaper.ipynb -------------------------------------------------------------------------------- /cross_subject_welch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/cross_subject_welch.ipynb -------------------------------------------------------------------------------- /data/emotion_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/data/emotion_labels.npy -------------------------------------------------------------------------------- /data/participants_sessions_vector.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/data/participants_sessions_vector.npy -------------------------------------------------------------------------------- /data/participants_vector.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/data/participants_vector.npy -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/feat_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/feat_extraction.py -------------------------------------------------------------------------------- /src/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/nn.py -------------------------------------------------------------------------------- /src/nn_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/nn_batch.py -------------------------------------------------------------------------------- /src/nn_stratified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/nn_stratified.py -------------------------------------------------------------------------------- /src/norm_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/norm_functions.py -------------------------------------------------------------------------------- /src/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javiferfer/cross-subject-eeg-emotion-recognition-through-nn/HEAD/src/train_model.py --------------------------------------------------------------------------------