Installation
Get started by installing the necessary components
Introduction
To run the analysis scripts, you will need to first install some required packages from Pip. For your convenience, we have provided the environment.yml file to recreate the conda environment.
Choosing the Dataset
To change the dataset passed to the analysis pipeline, you must change the name of the dataset inside src/main.py. This can be done by simply uncommenting the line of the dataset you want to analyze.
if __name__ == '__main__':
dataset: str = 'cardoen-2024'
# dataset: str = 'koishybayev-2022'Analysis Pipeline
To install the necessary dependencies, you will need to run the following commands (please note that you should have conda installed on your system).
# Install the dependencies and activate the environment
conda env create -f environment.yml
conda activate under-pressure
# Run the analysis scripts
python -m src.main