EEG Challenge 2025To run the starter code, follow these steps: Clone the Repository Clone this repository to your local machine using: ``bash git clone https://github.com/Kentucky-Open-Science/EEG-Challenge-2025 ` Change into the project directory: `bash cd EEG-Challenge-2025 ` Set Up a Virtual Environment It is recommended to use a virtual environment to manage dependencies. You can create one using venv: `bash python -m…
Source code on GitHub.
To run the starter code, follow these steps:
bash
git clone https://github.com/Kentucky-Open-Science/EEG-Challenge-2025
`
Change into the project directory:
`bash
cd EEG-Challenge-2025
`
Set Up a Virtual Environment
It is recommended to use a virtual environment to manage dependencies. You can create one using venv:
`bash
python -m venv venv
source venv/bin/activate # On Windows use venvScriptsactivate
`
Install Dependencies
Install the required Python packages using pip:
`bash
pip install -r requirements.txt
`
Note: You will also need to manually install PyTorch. Please follow the instructions on the official PyTorch website to install the appropriate version for your system.
- Run the Starter Code
You can run the starter code using:
`bash
python challenge_1.py
`
and
`bash
python challenge_2.py
``