| # src/config.py | |
| from __future__ import annotations | |
| # Paper Table 2: optimum K per performance trait | |
| K_BY_TARGET = { | |
| "jump_power": 165, | |
| "jump_accel": 29, | |
| "bite": 57, | |
| "jump_vel": 16, | |
| "endurance": 154, | |
| "sprint": 84, | |
| "jump_distance": 46, | |
| "distance_capacity": 25, # paper calls this "Stamina" | |
| "angle": 34, | |
| } | |
| N_SPLITS = 10 | |
| RANDOM_STATE = 42 | |