├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml ├── other.xml └── vcs.xml ├── 2020-01-18_environment.yaml ├── LICENSE ├── README.rst ├── cluster ├── cluster_functions.py ├── cluster_template.sh ├── run_bash_cluster_example.sh └── run_cluster_functions.py ├── examples ├── .gitignore ├── convert_mat_to_eeglab.m ├── figures │ └── .gitignore ├── gen_figure_supp_as.py ├── gen_figure_supp_wr.py ├── make_gru_examples.m └── make_gru_phase_example.m ├── manuscript ├── .gitignore ├── gen_f_alpha_dist.py ├── gen_figure_fft_and_kuromato_ts.py ├── gen_figure_paper_as.py ├── gen_figure_paper_wr.py ├── gen_figure_paper_ws.py └── gen_figure_phase_and_model_weights.py ├── py_eegepe.yml └── py_eegepe ├── .gitignore ├── __init__.py ├── data_loader.py ├── data_specific.py ├── inputparser.py ├── met ├── __init__.py ├── core.py ├── met_fir.py ├── met_net.py ├── met_net_arch.py ├── met_reg.py ├── met_shared.py └── met_ukf.py ├── paradigm.py ├── sp.py └── summary ├── __init__.py ├── num_subplots.py ├── phase_plot.py ├── results_plot.py └── signal_plot.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /2020-01-18_environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/2020-01-18_environment.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/README.rst -------------------------------------------------------------------------------- /cluster/cluster_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/cluster/cluster_functions.py -------------------------------------------------------------------------------- /cluster/cluster_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/cluster/cluster_template.sh -------------------------------------------------------------------------------- /cluster/run_bash_cluster_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/cluster/run_bash_cluster_example.sh -------------------------------------------------------------------------------- /cluster/run_cluster_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/cluster/run_cluster_functions.py -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | /proc_*/ 2 | -------------------------------------------------------------------------------- /examples/convert_mat_to_eeglab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/examples/convert_mat_to_eeglab.m -------------------------------------------------------------------------------- /examples/figures/.gitignore: -------------------------------------------------------------------------------- 1 | *.svg 2 | -------------------------------------------------------------------------------- /examples/gen_figure_supp_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/examples/gen_figure_supp_as.py -------------------------------------------------------------------------------- /examples/gen_figure_supp_wr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/examples/gen_figure_supp_wr.py -------------------------------------------------------------------------------- /examples/make_gru_examples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/examples/make_gru_examples.m -------------------------------------------------------------------------------- /examples/make_gru_phase_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/examples/make_gru_phase_example.m -------------------------------------------------------------------------------- /manuscript/.gitignore: -------------------------------------------------------------------------------- 1 | /figures/ 2 | -------------------------------------------------------------------------------- /manuscript/gen_f_alpha_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_f_alpha_dist.py -------------------------------------------------------------------------------- /manuscript/gen_figure_fft_and_kuromato_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_figure_fft_and_kuromato_ts.py -------------------------------------------------------------------------------- /manuscript/gen_figure_paper_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_figure_paper_as.py -------------------------------------------------------------------------------- /manuscript/gen_figure_paper_wr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_figure_paper_wr.py -------------------------------------------------------------------------------- /manuscript/gen_figure_paper_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_figure_paper_ws.py -------------------------------------------------------------------------------- /manuscript/gen_figure_phase_and_model_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/manuscript/gen_figure_phase_and_model_weights.py -------------------------------------------------------------------------------- /py_eegepe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe.yml -------------------------------------------------------------------------------- /py_eegepe/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | /.idea/ 3 | *.pyc 4 | /dnc_* 5 | -------------------------------------------------------------------------------- /py_eegepe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/__init__.py -------------------------------------------------------------------------------- /py_eegepe/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/data_loader.py -------------------------------------------------------------------------------- /py_eegepe/data_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/data_specific.py -------------------------------------------------------------------------------- /py_eegepe/inputparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/inputparser.py -------------------------------------------------------------------------------- /py_eegepe/met/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/__init__.py -------------------------------------------------------------------------------- /py_eegepe/met/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/core.py -------------------------------------------------------------------------------- /py_eegepe/met/met_fir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_fir.py -------------------------------------------------------------------------------- /py_eegepe/met/met_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_net.py -------------------------------------------------------------------------------- /py_eegepe/met/met_net_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_net_arch.py -------------------------------------------------------------------------------- /py_eegepe/met/met_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_reg.py -------------------------------------------------------------------------------- /py_eegepe/met/met_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_shared.py -------------------------------------------------------------------------------- /py_eegepe/met/met_ukf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/met/met_ukf.py -------------------------------------------------------------------------------- /py_eegepe/paradigm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/paradigm.py -------------------------------------------------------------------------------- /py_eegepe/sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/sp.py -------------------------------------------------------------------------------- /py_eegepe/summary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/summary/__init__.py -------------------------------------------------------------------------------- /py_eegepe/summary/num_subplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/summary/num_subplots.py -------------------------------------------------------------------------------- /py_eegepe/summary/phase_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/summary/phase_plot.py -------------------------------------------------------------------------------- /py_eegepe/summary/results_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/summary/results_plot.py -------------------------------------------------------------------------------- /py_eegepe/summary/signal_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrmxn/py_eegepe/HEAD/py_eegepe/summary/signal_plot.py --------------------------------------------------------------------------------