A lightweight tool to calculate Predictive Integrity (PI) for PyTorch models.
Project description
ΣPI: Observe the Cognitive ability of Your AI Model
ΣPI is a lightweight, universal SDK to calculate Predictive Integrity (PI), a metric from the Integrated Predictive Workspace Theory (IPWT) of consciousness. It provides a powerful, real-time proxy for your model's "cognitive state" during training.
Stop just looking at loss. Start observing how your model learns.
What is Predictive Integrity (PI)?
PI is a score (0 to 1) reflecting a model's internal world model integrity, derived from prediction error (Epsilon), model uncertainty (Tau), and global gradient norm (Surprise). High PI indicates healthy learning; a drop can signal issues like overfitting before loss metrics do.
Why Use ΣPI?
- Early Warning for Training Instability: Detects subtle shifts in model "cognition" before loss metrics diverge.
- Insight into OOD Impact: Quantifies the "surprise" your model experiences when encountering out-of-distribution data.
- Understanding Model Overfitting: Reveals when your model's internal world becomes too rigid or too chaotic.
- Quantifying Cognitive Load: Provides a novel metric for the "effort" your model expends to integrate new information.
Model Zoo & Experiments
The complete model zoo, experimental framework (PILR-S), and all associated results have been migrated to a dedicated repository: dmf-archive/PILF.
This SigmaPI repository now contains only the core SDK for calculating Predictive Integrity. Please visit the PILF repository for all implementation examples, training scripts, and pre-trained models.
Installation
SigmaPI requires torch to be installed. To avoid conflicts with your existing (e.g., GPU-specific) torch installation, it is not listed as a hard dependency.
Please ensure torch is installed in your environment. If you want to install it alongside this package, you can use the [torch] extra:
# If you already have torch installed
pip install sigma-pi
# To install with torch
pip install sigma-pi[torch]
How to Use
The sigma-pi package provides the core SigmaPI monitor. Here is a basic integration example:
import torch
from sigma_pi import SigmaPI
# 1. Initialize the SigmaPI monitor once outside your training loop
sigma_pi = SigmaPI(device='cuda' if torch.cuda.is_available() else 'cpu')
# 2. Inside your training/validation loop:
# (Ensure you are in a `with torch.enable_grad():` block for validation)
# Calculate loss
loss_epsilon = loss_fn(logits, target)
# Compute gradients (this is crucial)
model.zero_grad()
loss_epsilon.backward(create_graph=True) # Use create_graph=True if you need to backprop through PI metrics
# Calculate PI metrics
pi_metrics = sigma_pi.calculate(
model=model,
loss_epsilon=loss_epsilon,
logits=logits
)
print(f"PI: {pi_metrics['pi_score']:.4f}, Surprise: {pi_metrics['surprise']:.4f}")
# Don't forget to step your optimizer after calculating PI
optimizer.step()
Using with Automatic Mixed Precision (AMP)
When using torch.cuda.amp.GradScaler, it's crucial to calculate PI after unscaling the gradients but before the optimizer step. This ensures ΣPI receives the correct, unscaled gradient values.
Here is the recommended integration pattern:
import torch
from sigma_pi import SigmaPI
from torch.cuda.amp import autocast, GradScaler
# 1. Initialize the SigmaPI monitor and GradScaler
sigma_pi = SigmaPI(device='cuda')
scaler = GradScaler()
# 2. Inside your training loop
model.train()
optimizer.zero_grad()
with autocast():
logits = model(inputs)
loss_epsilon = loss_fn(logits, target)
# Scale loss and compute gradients
scaler.scale(loss_epsilon).backward()
# Unscale gradients before optimizer step and PI calculation
scaler.unscale_(optimizer)
# --> Best place to calculate PI <--
# Gradients are now unscaled and ready for analysis.
pi_metrics = sigma_pi.calculate(
model=model,
loss_epsilon=loss_epsilon,
logits=logits
)
print(f"PI: {pi_metrics['pi_score']:.4f}, Surprise: {pi_metrics['surprise']:.4f}")
# Optimizer step and scaler update
scaler.step(optimizer)
scaler.update()
The returned pi_metrics dictionary contains:
pi_score: The overall predictive integrity (0-1)surprise: Gradient norm indicating model adaptationnormalized_error: Error scaled by model uncertaintycognitive_cost: Combined cost of error and surprise- Additional component metrics for detailed analysis
Further Reading
PI is a concept derived from the Integrated Predictive Workspace Theory (IPWT), a computational theory of consciousness. To understand the deep theory behind this tool, please refer to https://github.com/dmf-archive/IPWT
Citation
If you wish to cite this work, please use the following BibTeX entry:
@misc{sigma_pi,
author = {Rui, L.},
title = {{ΣPI: Observe the Cognitive ability of Your AI Model}},
year = {2025},
publisher = {GitHub},
url = {https://github.com/dmf-archive/SigmaPI}
}
License
This project is licensed under the MIT License.
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 sigma_pi-0.3.0.tar.gz.
File metadata
- Download URL: sigma_pi-0.3.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
addf0b3d1a495d86c28e36ec9d6b459bf696845684c5b95ca48da4cebccf4ef6
|
|
| MD5 |
1f203116b9c2b23a8761b92e410025a7
|
|
| BLAKE2b-256 |
f5ef4866d75841f40046d7976359e8360cf6a58bec05bbdb6f7ef33ae4ca388f
|
Provenance
The following attestation bundles were made for sigma_pi-0.3.0.tar.gz:
Publisher:
publish-to-pypi.yml on dmf-archive/SigmaPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigma_pi-0.3.0.tar.gz -
Subject digest:
addf0b3d1a495d86c28e36ec9d6b459bf696845684c5b95ca48da4cebccf4ef6 - Sigstore transparency entry: 254326088
- Sigstore integration time:
-
Permalink:
dmf-archive/SigmaPI@dddd96fc21194d19b88734f16c3e6cbb9b472bd5 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/dmf-archive
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@dddd96fc21194d19b88734f16c3e6cbb9b472bd5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sigma_pi-0.3.0-py3-none-any.whl.
File metadata
- Download URL: sigma_pi-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cad29f4d0749368d0c908d3be9ae46fc54ce1c7b953bd70e46e2275ba842aef
|
|
| MD5 |
bda2e1fc1b56d0add246707c536915f2
|
|
| BLAKE2b-256 |
26be0d035d5b2875e6bc3b958b3190d87c062a2e9008a12293d3b9342698886b
|
Provenance
The following attestation bundles were made for sigma_pi-0.3.0-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on dmf-archive/SigmaPI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sigma_pi-0.3.0-py3-none-any.whl -
Subject digest:
5cad29f4d0749368d0c908d3be9ae46fc54ce1c7b953bd70e46e2275ba842aef - Sigstore transparency entry: 254326090
- Sigstore integration time:
-
Permalink:
dmf-archive/SigmaPI@dddd96fc21194d19b88734f16c3e6cbb9b472bd5 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/dmf-archive
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@dddd96fc21194d19b88734f16c3e6cbb9b472bd5 -
Trigger Event:
push
-
Statement type: