Skip to content

Commit 06da4c8

Browse files
committed
Fix: Remove large data files and add to gitignore
1 parent 31701b2 commit 06da4c8

21 files changed

Lines changed: 4648 additions & 200139 deletions

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ hpc_data/phase4_18735304
1919
hpc_data/phase6_18780164
2020

2121

22+
hpc_data/**/*.jsonl
23+
hpc_data/**/*.jsonl

docs/HPC_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ watch -n 10 "ls -1 results_JOBID | wc -l"
4848
4949
# Fetching the results once the job is done
5050
51-
scp -r kanagnostopoul@snellius.surf.nl:~/CSS_Project/results/phase6_18824496/ ./results/
51+
scp -r kanagnostopoul@snellius.surf.nl:~/CSS_Project/results/phase6_18832958/ ./results/
5252
```
5353

5454
The jobscript template can be found in ```run_analysis.sh``` (default rome paritition).

hpc/run_phase4.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22
#SBATCH --job-name=pp_phase4
3-
#SBATCH --partition=rome
3+
#SBATCH --partition=genoa
44
#SBATCH --nodes=1
55
#SBATCH --ntasks=1
6-
#SBATCH --cpus-per-task=64
6+
#SBATCH --cpus-per-task=128
77
#SBATCH --time=08:00:00
8-
#SBATCH --mem=16G
8+
#SBATCH --mem=0
99
#SBATCH --output=/home/kanagnostopoul/CSS_Project/pp_phase4_%j.out
1010
#SBATCH --error=/home/kanagnostopoul/CSS_Project/pp_phase4_%j.err
1111

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2026-01-28 16:37:12,640 [INFO] ============================================================
2+
2026-01-28 16:37:12,640 [INFO] PREDATOR-PREY HYDRA EFFECT EXPERIMENTS
3+
2026-01-28 16:37:12,640 [INFO] ============================================================
4+
2026-01-28 16:37:12,640 [INFO] Phases: [1]
5+
2026-01-28 16:37:12,640 [INFO] Output: results/phase1_18831093
6+
2026-01-28 16:37:12,640 [INFO] Cores: 128
7+
2026-01-28 16:37:12,640 [INFO] Numba: ENABLED
8+
2026-01-28 16:37:12,640 [INFO]
9+
2026-01-28 16:37:12,640 [INFO] ============================================================
10+
2026-01-28 16:37:12,640 [INFO] PHASE 1
11+
2026-01-28 16:37:12,640 [INFO] ============================================================
12+
2026-01-28 16:37:12,640 [INFO] Estimated: 9,000 sims, ~3.3h on 128 cores (~423 core-hours)
13+
2026-01-28 16:37:12,640 [INFO] Dry run - skipping execution
14+
2026-01-28 16:37:12,640 [INFO]
15+
2026-01-28 16:37:12,640 [INFO] ============================================================
16+
2026-01-28 16:37:12,640 [INFO] EXPERIMENTS COMPLETE
17+
2026-01-28 16:37:12,640 [INFO] ============================================================
18+
2026-01-28 16:37:13,648 [INFO] ============================================================
19+
2026-01-28 16:37:13,648 [INFO] PREDATOR-PREY HYDRA EFFECT EXPERIMENTS
20+
2026-01-28 16:37:13,648 [INFO] ============================================================
21+
2026-01-28 16:37:13,648 [INFO] Phases: [1]
22+
2026-01-28 16:37:13,648 [INFO] Output: results/phase1_18831093
23+
2026-01-28 16:37:13,648 [INFO] Cores: 128
24+
2026-01-28 16:37:13,648 [INFO] Numba: ENABLED
25+
2026-01-28 16:37:13,648 [INFO]
26+
2026-01-28 16:37:13,648 [INFO] ============================================================
27+
2026-01-28 16:37:13,648 [INFO] PHASE 1
28+
2026-01-28 16:37:13,648 [INFO] ============================================================
29+
2026-01-28 16:37:13,648 [INFO] Estimated: 9,000 sims, ~3.3h on 128 cores (~423 core-hours)
30+
2026-01-28 16:37:14,384 [INFO] Phase 1: 600 simulations
31+
2026-01-28 16:37:14,384 [INFO] Grid: 20 prey_death values × 30 reps (prey_birth=0.2)
32+
2026-01-28 16:46:50,474 [INFO] Phase 1 complete. Results: results/phase1_18831093/phase1_results.jsonl
33+
2026-01-28 16:46:50,523 [INFO] Phase 1 runtime: 9.6 minutes
34+
2026-01-28 16:46:50,523 [INFO]
35+
2026-01-28 16:46:50,523 [INFO] ============================================================
36+
2026-01-28 16:46:50,524 [INFO] EXPERIMENTS COMPLETE
37+
2026-01-28 16:46:50,524 [INFO] ============================================================
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"grid_size": 1000,
3+
"densities": [
4+
0.3,
5+
0.15
6+
],
7+
"grid_sizes": [
8+
50,
9+
100,
10+
250,
11+
500,
12+
1000,
13+
2500
14+
],
15+
"prey_birth": 0.2,
16+
"prey_death": 0.05,
17+
"predator_birth": 0.8,
18+
"predator_death": 0.05,
19+
"critical_prey_birth": 0.2,
20+
"critical_prey_death": 0.947,
21+
"prey_death_range": [
22+
0.0963,
23+
0.0973
24+
],
25+
"n_prey_birth": 15,
26+
"n_prey_death": 20,
27+
"predator_birth_values": [
28+
0.15,
29+
0.2,
30+
0.25,
31+
0.3
32+
],
33+
"predator_death_values": [
34+
0.05,
35+
0.1,
36+
0.15,
37+
0.2
38+
],
39+
"prey_death_offsets": [
40+
-0.02,
41+
-0.01,
42+
0.0,
43+
0.01,
44+
0.02
45+
],
46+
"n_replicates": 30,
47+
"warmup_steps": 1000,
48+
"measurement_steps": 1000,
49+
"with_evolution": false,
50+
"evolve_sd": 0.1,
51+
"evolve_min": 0.0,
52+
"evolve_max": 0.1,
53+
"sensitivity_sd_values": [
54+
0.02,
55+
0.05,
56+
0.1,
57+
0.15,
58+
0.2
59+
],
60+
"synchronous": false,
61+
"directed_hunting": false,
62+
"directed_hunting_values": [
63+
false,
64+
true
65+
],
66+
"save_timeseries": false,
67+
"timeseries_subsample": 10,
68+
"collect_pcf": false,
69+
"pcf_sample_rate": 0.2,
70+
"pcf_max_distance": 20.0,
71+
"pcf_n_bins": 20,
72+
"min_density_for_analysis": 0.002,
73+
"perturbation_magnitude": 0.1,
74+
"n_jobs": 128
75+
}
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"phase": 1,
3+
"description": "Parameter sweep for critical point",
4+
"n_sims": 600,
5+
"timestamp": "2026-01-28 16:46:50",
6+
"config": {
7+
"grid_size": 1000,
8+
"densities": [
9+
0.3,
10+
0.15
11+
],
12+
"grid_sizes": [
13+
50,
14+
100,
15+
250,
16+
500,
17+
1000,
18+
2500
19+
],
20+
"prey_birth": 0.2,
21+
"prey_death": 0.05,
22+
"predator_birth": 0.8,
23+
"predator_death": 0.05,
24+
"critical_prey_birth": 0.2,
25+
"critical_prey_death": 0.947,
26+
"prey_death_range": [
27+
0.0963,
28+
0.0973
29+
],
30+
"n_prey_birth": 15,
31+
"n_prey_death": 20,
32+
"predator_birth_values": [
33+
0.15,
34+
0.2,
35+
0.25,
36+
0.3
37+
],
38+
"predator_death_values": [
39+
0.05,
40+
0.1,
41+
0.15,
42+
0.2
43+
],
44+
"prey_death_offsets": [
45+
-0.02,
46+
-0.01,
47+
0.0,
48+
0.01,
49+
0.02
50+
],
51+
"n_replicates": 30,
52+
"warmup_steps": 1000,
53+
"measurement_steps": 1000,
54+
"with_evolution": false,
55+
"evolve_sd": 0.1,
56+
"evolve_min": 0.0,
57+
"evolve_max": 0.1,
58+
"sensitivity_sd_values": [
59+
0.02,
60+
0.05,
61+
0.1,
62+
0.15,
63+
0.2
64+
],
65+
"synchronous": false,
66+
"directed_hunting": false,
67+
"directed_hunting_values": [
68+
false,
69+
true
70+
],
71+
"save_timeseries": false,
72+
"timeseries_subsample": 10,
73+
"collect_pcf": false,
74+
"pcf_sample_rate": 0.2,
75+
"pcf_max_distance": 20.0,
76+
"pcf_n_bins": 20,
77+
"min_density_for_analysis": 0.002,
78+
"perturbation_magnitude": 0.1,
79+
"n_jobs": 128
80+
}
81+
}

hpc_data/phase1_18831093/phase1_results.jsonl

Lines changed: 600 additions & 0 deletions
Large diffs are not rendered by default.

hpc_data/phase4.2_18824493/experiments.log

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)