Python 3
(developed usingPython 3.7.7
)
- Create a Python virtual environment (e.g.
conda create --name cognitive python=3.7.7
orvirtualenv env
) - Activate the environment (e.g.
conda activate nls
orsource ./env/bin/activate
) - Install dependencies
- Using Poetry (recommended)
- Deployment:
poetry install --no-dev
- Development:
poetry install
- Deployment:
- Using Pip (only for deployment):
pip install -r requirements.txt
- Using Poetry (recommended)
- Run the program from the root of the project:
python src/main.py
src
- All the code written for the courseworksmain.py
- The script to run to evaluate classifierresnet.py
- Definition of the ResNet model