StressPy
Core numerical routines for the Geometric Stress Criterion (GSC).
stresspy decomposes a model--data discrepancy into a component aligned with
the model's local parameter-accessible tangent space and a component normal to
that space. It also reports numerical rank, singular values, the normal
fraction, conditioning and a minimum-norm local repair vector.
StressPy is an early reference implementation. It performs the deterministic geometric calculation; it does not yet fit models, construct ODE Jacobians or perform bootstrap calibration.
Installation
pip install stresspy
Quick start
import numpy as np
from stresspy import analyze
# Use the convention residual = observed - predicted.
residual = np.array([0.1, -0.1, -0.1])
jacobian = np.array([
[1.0, 0.0],
[1.0, 1.0],
[0.0, 1.0],
])
sigma = np.array([0.1, 0.1, 0.1])
result = analyze(
residual=residual,
jacobian=jacobian,
sigma=sigma,
)
print("Tangent stress:", result.tangent_stress)
print("Normal stress:", result.normal_stress)
print("Normal fraction (%):", result.normal_fraction_pct)
print("Numerical rank:", result.rank)
print("Repair vector:", result.repair_vector)
analyze is the recommended entry point when the residual and Jacobian have
already been calculated. Users who have separate observed and predicted arrays
can either form residual = observed - predicted or call the lower-level
decompose function directly.
Weighting
An unweighted Euclidean analysis requires no additional argument:
result = analyze(residual, jacobian)
Independent observational standard deviations can be supplied with sigma:
result = analyze(residual, jacobian, sigma=sigma)
An optional absolute or quantile-based lower floor can prevent extremely small standard deviations from dominating the observation metric:
absolute_floor = analyze(
residual,
jacobian,
sigma=sigma,
sigma_floor=0.05,
)
quantile_floor = analyze(
residual,
jacobian,
sigma=sigma,
sigma_floor_quantile=0.10,
)
Positive diagonal precision weights may be supplied directly. They define the
metric sum(weights * residual**2) and are equivalent to
sigma = 1 / sqrt(weights):
weights = 1.0 / sigma**2
result = analyze(residual, jacobian, weights=weights)
For correlated observations, supply a positive-definite covariance matrix:
result = analyze(residual, jacobian, covariance=covariance)
Supply only one of sigma, weights, covariance or whitener. Weighting is
part of the geometry: different defensible metrics can produce different
tangent--normal decompositions and should be reported explicitly.
The discrepancy convention is
[ r = y - f(\hat{\theta}). ]
With observation-space whitening matrix (L), StressPy forms (r_W=Lr) and (J_W=LJ). If (U_r) contains the retained left singular vectors of (J_W), then
[ r_{\parallel,W}=U_rU_r^\top r_W, \qquad r_{\perp,W}=r_W-r_{\parallel,W}. ]
The squared norms give total, tangent and normal stress. The minimum-norm local repair is calculated in the parameter coordinates represented by the supplied Jacobian. Consequently, repair magnitude is coordinate-dependent, and local tangent accessibility does not guarantee a practical finite nonlinear repair.
Principal functions
analyze: recommended high-level analysis from a residual and Jacobian, including common weighting and uncertainty-floor options.decompose: single tangent--normal decomposition with optional uncertainty or covariance weighting.decompose_blocks: joint interrogation of multiple independent observation blocks sharing the same parameter coordinates.floor_sigma: explicit uncertainty-floor preprocessing.jacobian_to_log_coordinates: conversion of selected Jacobian columns to log-parameter coordinates.
Both analyze and decompose return an immutable GSCResult containing the
component vectors, stress measures, normal fraction, numerical-rank diagnostics
and local repair.
Interpretation
Normal stress measures discrepancy outside the retained local Jacobian column space in the selected observation metric. It is a local geometric diagnostic, not by itself a calibrated hypothesis test. Conclusions can depend on the chosen weighting, parameter point and singular-value threshold.
Licence and commercial use
StressPy is available under the PolyForm Noncommercial License 1.0.0. It may be used, studied, modified and redistributed for permitted non-commercial purposes under those terms. Commercial use requires separate written permission from the copyright holder.
Citation
If StressPy contributes to academic work, please cite the software and the
associated GSC publication when available. Citation metadata is provided in
CITATION.cff.
Suggested software citation:
James, D. (2026). StressPy: Core numerical routines for the Geometric Stress Criterion (Version 0.0.4) [Computer software]. https://pypi.org/project/stresspy/
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 stresspy-0.0.4.tar.gz.
File metadata
- Download URL: stresspy-0.0.4.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2f8cbc6f69cd01cc98de3cf1b850ca5341bd5012a3f54e9ceda0be6fdf7befc
|
|
| MD5 |
c8108a3559bd5599e60ed21fe98eea37
|
|
| BLAKE2b-256 |
ea8eb15708183296d3d83af98409c8a0f2a41ad96507749dccf73885c1b39421
|
File details
Details for the file stresspy-0.0.4-py3-none-any.whl.
File metadata
- Download URL: stresspy-0.0.4-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
247f8b7e058804fd1a842c19aeced1e1a73fb382f4d4004a4e19aa472e94447c
|
|
| MD5 |
d4ace384a6c5ed17ac0c6018e16f29cc
|
|
| BLAKE2b-256 |
8ef80039e9f74902a703ec7bb5692e5494b1ec413e2b5861022946d26d749970
|