Diff of /README.md [000000] .. [4a508b]

Switch to unified view

a b/README.md
1
# dl-eeg-tutorial
2
Hands-on tutorial on deep learning for EEG classification.
3
4
In this hands-on tutorial, you will train a convolutional neural network to identify sleep stages from raw EEG signals, and try to improve the classification performance of an existing model. The tutorial will guide you through the different steps of loading publicly available sleep recordings, preparing the data for training, creating a neural network, training it, and analyzing its behaviour. The tutorial is based on the open source packages MNE-Python and pytorch and can be run using Google Colab.
5
6
Inspiration for this tutorial was taken from the [MNE-Python](https://mne.tools/stable/auto_tutorials/sample-datasets/plot_sleep.html) and [braindecode](https://braindecode.org/auto_examples/plot_sleep_staging.html) sleep staging examples, as well as the [`mne-torch`](https://github.com/mne-tools/mne-torch) repository.
7
8
[**Open this tutorial in Google Colab**](https://colab.research.google.com/github/hubertjb/dl-eeg-tutorial/blob/main/sleep_staging_physionet.ipynb)
9
10
## Running locally
11
12
To run this tutorial locally, make sure the repo has been cloned on your machine, and that the required packages are installed in a Python environment (3.6 or above). The packages can be installed by running:
13
```
14
pip install -r requirements.txt
15
```
16
17
The entire tutorial is contained in `sleep_staging_physionet.ipynb` and can be run with `jupyter notebook`.
18
Tested on Ubuntu 20.04.
19
20
## Authors
21
22
[Hubert Banville](https://hubertjb.github.io/)