File size: 370 Bytes
80ef3b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/bash
#SBATCH --job-name=wildfire-contract-rerun
#SBATCH --cpus-per-task=4
#SBATCH --mem=24G
#SBATCH --time=02:00:00
# Template only. Set these paths for your environment after obtaining data.
PROJECT_ROOT=/path/to/this/repository
DATA_ROOT=/path/to/raw/or/processed/data
OUTPUT_ROOT=/path/to/output
cd "$PROJECT_ROOT"
python3 scripts/reproduce_paper_outputs.py
|