Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,25 @@
|
|
1 |
-
---
|
2 |
-
license: gpl-3.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: gpl-3.0
|
3 |
+
---
|
4 |
+
# NeuroGPT
|
5 |
+
### Neuro-GPT: Towards a Foundation Model for EEG [paper](https://arxiv.org/abs/2311.03764)
|
6 |
+
|
7 |
+
#### Published on IEEE - ISBI 2024
|
8 |
+
|
9 |
+
We propose Neuro-GPT, a foundation model consisting of an EEG encoder and a GPT model. The foundation model is pre-trained on a large-scale data set using a self-supervised task that learns how to reconstruct masked EEG segments. We then fine-tune the model on a Motor Imagery Classification task to validate its performance in a low-data regime (9 subjects). Our experiments demonstrate that applying a foundation model can significantly improve classification performance compared to a model trained from scratch.
|
10 |
+
|
11 |
+
## Installation
|
12 |
+
```console
|
13 |
+
git clone [email protected]:wenhui0206/NeuroGPT.git
|
14 |
+
pip install -r requirements.txt
|
15 |
+
cd NeuroGPT/scripts
|
16 |
+
./train.sh
|
17 |
+
```
|
18 |
+
|
19 |
+
## Requirements
|
20 |
+
pip install -r requirements.txt
|
21 |
+
|
22 |
+
## Datasets
|
23 |
+
- [TUH EEG Corpus](https://isip.piconepress.com/projects/tuh_eeg/html/downloads.shtml#c_tueg)
|
24 |
+
- [BCI Competition IV 2a Dataset](https://www.bbci.de/competition/iv/#datasets)
|
25 |
+
|