Skip to content

Commit 0b2f337

Browse files
committed
phase 2 data; evolution is shown as true but was stopped after warmup
1 parent f397330 commit 0b2f337

24 files changed

Lines changed: 647 additions & 31 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ results/
1010
.ipynb_checkpoints/
1111
# Data files
1212
data/
13-
.pytest_cache/
13+
.pytest_cache/
14+
15+
.DS_Store

hpc/run_phase2.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#SBATCH --nodes=1
55
#SBATCH --ntasks=1
66
#SBATCH --cpus-per-task=32
7-
#SBATCH --time=04:00:00
7+
#SBATCH --time=08:00:00
88
#SBATCH --mem=16G
99
#SBATCH --output=pp_phase2_%j.out
1010
#SBATCH --error=pp_phase2_%j.err

hpc/run_phase3.sh

Whitespace-only changes.

hpc/run_phase4.sh

Whitespace-only changes.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2026-01-26 12:12:40,935 [INFO] ============================================================
2+
2026-01-26 12:12:40,935 [INFO] PREDATOR-PREY HYDRA EFFECT EXPERIMENTS
3+
2026-01-26 12:12:40,935 [INFO] ============================================================
4+
2026-01-26 12:12:40,935 [INFO] Phases: [2]
5+
2026-01-26 12:12:40,935 [INFO] Output: results/phase2_18684370
6+
2026-01-26 12:12:40,935 [INFO] Cores: 32
7+
2026-01-26 12:12:40,935 [INFO] Numba: ENABLED
8+
2026-01-26 12:12:40,935 [INFO]
9+
2026-01-26 12:12:40,935 [INFO] ============================================================
10+
2026-01-26 12:12:40,935 [INFO] PHASE 2
11+
2026-01-26 12:12:40,935 [INFO] ============================================================
12+
2026-01-26 12:12:40,935 [INFO] Estimated: 800 sims, ~3.5h on 32 cores (~113 core-hours)
13+
2026-01-26 12:12:40,935 [INFO] Dry run - skipping execution
14+
2026-01-26 12:12:40,935 [INFO]
15+
2026-01-26 12:12:40,935 [INFO] ============================================================
16+
2026-01-26 12:12:40,936 [INFO] EXPERIMENTS COMPLETE
17+
2026-01-26 12:12:40,936 [INFO] ============================================================
18+
2026-01-26 12:12:42,118 [INFO] ============================================================
19+
2026-01-26 12:12:42,119 [INFO] PREDATOR-PREY HYDRA EFFECT EXPERIMENTS
20+
2026-01-26 12:12:42,119 [INFO] ============================================================
21+
2026-01-26 12:12:42,119 [INFO] Phases: [2]
22+
2026-01-26 12:12:42,119 [INFO] Output: results/phase2_18684370
23+
2026-01-26 12:12:42,119 [INFO] Cores: 32
24+
2026-01-26 12:12:42,119 [INFO] Numba: ENABLED
25+
2026-01-26 12:12:42,119 [INFO]
26+
2026-01-26 12:12:42,119 [INFO] ============================================================
27+
2026-01-26 12:12:42,119 [INFO] PHASE 2
28+
2026-01-26 12:12:42,119 [INFO] ============================================================
29+
2026-01-26 12:12:42,119 [INFO] Estimated: 800 sims, ~3.5h on 32 cores (~113 core-hours)
30+
2026-01-26 12:12:44,094 [INFO] Phase 2: 400 simulations
31+
2026-01-26 12:12:44,094 [INFO] prey_birth values: 1
32+
2026-01-26 12:12:44,094 [INFO] initial prey_death values: 20
33+
2026-01-26 12:12:44,094 [INFO] Replicates: 20
34+
2026-01-26 14:31:02,270 [INFO] Phase 2 complete. Results: results/phase2_18684370/phase2_results.jsonl
35+
2026-01-26 14:31:02,270 [INFO] Phase 2 runtime: 138.3 minutes
36+
2026-01-26 14:31:02,270 [INFO]
37+
2026-01-26 14:31:02,270 [INFO] ============================================================
38+
2026-01-26 14:31:02,270 [INFO] EXPERIMENTS COMPLETE
39+
2026-01-26 14:31:02,270 [INFO] ============================================================
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
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.22,
20+
"critical_prey_death": 0.04,
21+
"prey_birth_range": [
22+
0.1,
23+
0.35
24+
],
25+
"prey_death_range": [
26+
0.0,
27+
0.2
28+
],
29+
"n_prey_birth": 1,
30+
"n_prey_death": 20,
31+
"predator_birth_values": [
32+
0.15,
33+
0.2,
34+
0.25,
35+
0.3
36+
],
37+
"predator_death_values": [
38+
0.05,
39+
0.1,
40+
0.15,
41+
0.2
42+
],
43+
"prey_death_offsets": [
44+
-0.02,
45+
-0.01,
46+
0.0,
47+
0.01,
48+
0.02
49+
],
50+
"n_replicates": 20,
51+
"warmup_steps": 1000,
52+
"measurement_steps": 5000,
53+
"with_evolution": true,
54+
"evolve_sd": 0.01,
55+
"evolve_min": 0.001,
56+
"evolve_max": 0.2,
57+
"sensitivity_sd_values": [
58+
0.02,
59+
0.05,
60+
0.1,
61+
0.15,
62+
0.2
63+
],
64+
"synchronous": false,
65+
"directed_hunting": true,
66+
"directed_hunting_values": [
67+
false,
68+
true
69+
],
70+
"save_timeseries": false,
71+
"timeseries_subsample": 10,
72+
"collect_pcf": false,
73+
"pcf_sample_rate": 0.2,
74+
"pcf_max_distance": 20.0,
75+
"pcf_n_bins": 20,
76+
"min_density_for_analysis": 0.002,
77+
"perturbation_magnitude": 0.1,
78+
"n_jobs": 32
79+
}
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"phase": 2,
3+
"description": "Self-organization toward criticality",
4+
"n_sims": 400,
5+
"initial_prey_deaths": [
6+
0.0,
7+
0.010526315789473684,
8+
0.021052631578947368,
9+
0.031578947368421054,
10+
0.042105263157894736,
11+
0.05263157894736842,
12+
0.06315789473684211,
13+
0.07368421052631578,
14+
0.08421052631578947,
15+
0.09473684210526316,
16+
0.10526315789473684,
17+
0.11578947368421053,
18+
0.12631578947368421,
19+
0.1368421052631579,
20+
0.14736842105263157,
21+
0.15789473684210525,
22+
0.16842105263157894,
23+
0.17894736842105263,
24+
0.18947368421052632,
25+
0.2
26+
],
27+
"timestamp": "2026-01-26 14:31:02"
28+
}

0 commit comments

Comments
 (0)