BCI (Brain-Computer Interface) project for EEG (Electroencephalography) data processing and classification.
You have to clone the repository with the git clone command, the navigate inside the project directory using the cd command
In order to set up environment, I recommend you to use WSL 2.0 on Windows and install Ubuntu on it. Furthermore, I recommend git installation procedure for linux based environment :
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
Follow instructions from official repository.
!! WARNING !!
- If you use WSL 2.0 or Linux, don't forget to install prerequisites :
sudo apt-get update; sudo apt-get install make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
- Add pyenv to path :
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
- Look for all available python versions :
pyenv install --list | grep " 3\."
- Install specific version :
pyenv install <python version>
# For example :
pyenv install 3.12.0
- Choose a specific python version :
# Global python version setting (i.e. by default)
pyenv global <python version>
# Local (for a project)
pyenv local <python version>
Follow instructions from official documentation.
!! WARNING !!
- Add poetry to path :
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
- Configurations before installing python environment :
# Use active python version (linux command : which python)
poetry config virtualenvs.prefer-active-python true --local
# Create .venv folder instead of installing it into poetry root environments path
poetry config virtualenvs.in-project true --local
- Install project python environment :
poetry install
If your environment installation fails, delete the poetry.lock file and re-run the previous command. This may be due to a different cuda version than the one originally installed.
- Use poetry environment in terminal :
poetry shell
- Run poetry script :
# Further informations will be given later
poetry run <script name>
Please download data and store them in data
folder. Don't worry, .gitignore
file is ignoring every files in this folder but .gitkeep
file allows us to keep the folder visible in the repository.
Please use notebooks
folder to put all visualization or demo notebooks.
- To main project script :
poetry run demo
- To run unit tests :
# Make sure you are in poetry environment
poetry shell
# in a new terminal
mlflow ui
pytest