Régression symbolique par programmation génétique — lois interprétables sur données expérimentales (pur Python/NumPy)
Project description
GP_ELITE
Genetic-programming symbolic regression — discover interpretable laws from your experimental data.
GP_ELITE searches for a mathematical formula linking your variables to a target, instead of a black box. It is built for small experimental datasets (≤10 variables, 100–5000 points) where you want to understand the relationship: degradation laws, sensor calibration, engineering correlations, dose–response curves, physical laws.
Pure Python / NumPy — no Julia, no compilation, no GPU. pip install and you're ready.
from gp_elite import symbolic_regression
result = symbolic_regression(X, y, feature_names=["cycle", "temperature", "current"])
print(result.expression) # capacity_SOH = 0.913 - 0.352·tanh(...)
print(result.r2_validation) # 0.996 (on data never seen during training)
Why GP_ELITE?
| GP_ELITE | Neural networks | PySR (state of the art) | |
|---|---|---|---|
| Output | readable formula | black box | readable formula |
| Installation | pip install (pure Python) |
heavy | requires Julia |
| Overfitting guard | built-in (hold-out) | do it yourself | do it yourself |
| Variable selection | importance report | no | partial |
GP_ELITE's niche: zero barrier to entry. A lab engineer, a student, or a technician points at a CSV file and gets a validated law back — without becoming a developer.
Installation
pip install gp-elite # from PyPI
# or, from source:
git clone https://github.com/ariel95500-create/gp-elite
cd gp-elite && pip install -e .
Dependencies: numpy, pandas, scikit-learn.
Usage
One line, on your own data (console UI)
gp-elite
Choose mode 6 (generic CSV), point to your file, and keep the defaults. GP_ELITE detects the columns, holds out a validation set, evolves, and prints the discovered law with its generalization report.
Programmatically (notebooks, pipelines)
import numpy as np
from gp_elite import symbolic_regression
X = np.random.uniform(1, 5, (200, 2))
y = 2.0 + 3.0 * np.sqrt(X[:, 0]) - 0.5 * X[:, 1]
result = symbolic_regression(
X, y,
feature_names=["a", "b"],
operators="physical", # 'physical' | 'trig' | 'full' | 'poly'
generations=60,
speed="fast", # 'ultrafast' | 'fast' | 'normal'
)
print(result.expression) # e.g. 2.0 + 3.0·sqrt(a) - 0.5·b
print(result.r2_validation) # quality on the hold-out set
print(result.size) # node count (readability)
Full example: battery degradation (NASA data)
python examples/battery_soh.py
From 168 real charge cycles, GP_ELITE discovers a state-of-health (SOH) law:
capacity_SOH ≈ 0.913 − 0.352 · tanh( cycle^((temperature/cycle)^0.485) )
R² validation = 0.996 (on cycles never seen) 12 nodes
A saturating degradation with cycle count, modulated by temperature — physically plausible, and certified on unseen data.
What is GP_ELITE good (and less good) at?
Good at: physical / engineering laws with multiplicative or exponential structure, modest-size noisy experimental data, problems where interpretability matters most.
On a representative subset of the Feynman Symbolic Regression Benchmark (16 physics equations), in fast mode (~15 s/equation): 81% of equations solved at R² > 0.999, mean R² 0.993.
Less good at: chaotic sequences (e.g. Collatz flight time — an intrinsically random component), >15–20 variables (the search space explodes), large datasets where raw accuracy outweighs interpretability (ensemble models dominate there).
Technical features
- Asymmetric island model (explorer / cleaner / stigmergic) with periodic migration
- Linear scaling (Keijzer 2003): the engine searches for the shape; scale and offset coefficients are solved in closed form
- ε-lexicase selection (La Cava 2016) to preserve behavioral diversity
- Island parallelism (multi-core) — ≈ ×3 measured on 4 cores
- Hold-out validation + parsimonious champion selection (R² tolerance): built-in overfitting guard
- Shift-free normalization preserving multiplicative structure (x·y stays a clean product)
- Transferable stigmergic memory across runs (grammar export/import)
Tests
pip install pytest
pytest -q
License
MIT — see LICENSE. Free to use, including commercially, with retention of the copyright notice.
Citing GP_ELITE
If GP_ELITE is useful in academic work, see CITATION.cff.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gp_elite-0.1.0.tar.gz.
File metadata
- Download URL: gp_elite-0.1.0.tar.gz
- Upload date:
- Size: 114.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fef3bd82d9c587bd988c01bc469b0e87cde4bb4de32424eb6ee2e5dea0dee825
|
|
| MD5 |
57e6ed390ca613528283ec94ab221ef0
|
|
| BLAKE2b-256 |
0e7054087dceb052bfaa7ee0abab22bbb73a4d32a676322504ca5d66edf13aa2
|
File details
Details for the file gp_elite-0.1.0-py3-none-any.whl.
File metadata
- Download URL: gp_elite-0.1.0-py3-none-any.whl
- Upload date:
- Size: 112.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55f4bd0fcee477615e10f332c9b8afeebcaa2aa5e7de196eed5f53db62789722
|
|
| MD5 |
73b0bb3273f828d10847ddc53cbe3e92
|
|
| BLAKE2b-256 |
eb195ebb8b9ed2dd357d55855045829a71e32f02f9c94398e963cae5e9171f91
|