├── README.md ├── chb_edf_file.py ├── chb_label_wrapper.py ├── download.sh ├── patient.py └── splits.py /README.md: -------------------------------------------------------------------------------- 1 | # chb-mit 2 | Machine learning on the CHB-MIT scalp EEG database 3 | -------------------------------------------------------------------------------- /chb_edf_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougkoch/chb-mit/HEAD/chb_edf_file.py -------------------------------------------------------------------------------- /chb_label_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougkoch/chb-mit/HEAD/chb_label_wrapper.py -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget -r --no-parent https://physionet.org/pn6/chbmit 4 | -------------------------------------------------------------------------------- /patient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougkoch/chb-mit/HEAD/patient.py -------------------------------------------------------------------------------- /splits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougkoch/chb-mit/HEAD/splits.py --------------------------------------------------------------------------------