Jupyter Widgets for visualizing local sensitivities of vectorized functions with
signature y = f(x) where x, y are arrays.
- Visualize multiple outputs against multiple inputs interactively
- Overlay more than one model at once
- Download pictures of individual plots (by clicking on the red dot)
pip install ipysensitivityprofiler
See the example notebooks, or run them without installing anything on binder.
Import the library and define one or more vectorized models:
import numpy as np
import ipysensitivityprofiler as isp
def quadratic1(x):
"""y = x1**2 + x2**2 + x1*x2"""
return np.prod(x, axis=1) + np.power(x, 2).sum(axis=1)
def quadratic2(x):
"""y = 10 + x1**2 + x2**2 - 2 * x1*x2"""
return 10 - 2 * np.prod(x, axis=1) + np.power(x, 2).sum(axis=1)
Then profile them:
isp.profiler(
models=[quadratic1, quadratic2],
xmin=[0, 0],
xmax=[2, 1],
ymin=[0],
ymax=[20],
x0=[1.5, 0.75],
resolution=10_000,
xlabels=["x1", "x2"],
ylabels=["y"],
)
A local sensitivity profile is the trace of a function obtained by holding all dimensions fixed but one. Profiling a model interactively is useful for debugging models (spotting obviously wrong trends early), for robust design (seeing how performance changes when the design is perturbed away from nominal), and for model comparison (overlaying a high-fidelity model, a low-fidelity one, and ground truth on the same plot to see where they disagree).
Models must be fast for interactivity: they must be able to evaluate thousands of datapoints on the order of milliseconds. This is a non-issue for empirical regressions (e.g. neural nets) or first-order physics-based models.
The other limitation is screen real estate. Beyond a certain number of inputs and outputs, humans become overwhelmed and the screen runs out of room, so this library is best suited for targeted studies on a subspace of a larger problem.
Documentation is available here
(generated using sphinx).
Contributions are welcome — see CONTRIBUTING.md for how to set up
the development environment (pixi) and run the QA pipeline.
This library began in 2024 as hand-written code, and its foundation — the profiling idea itself, the widget architecture, and the vectorized numerics behind it — reflects deliberate design rather than generated output. We recognize how capable AI has since become, and we leverage it judiciously and under human oversight — applying it where it genuinely improves the project, such as performance audits and test coverage, not as a substitute for understanding it. Every change, whatever its source, is held to the same standard of review.
Distributed under the terms of the MIT License.
