Skip to main content

Framework for Single Event Upset (SEU) injection in neural networks for harsh environment applications

Project description

SEU Injection Framework

PyPI Python Versions License: MIT

Research Paper | Interactive Explainer


A Python framework for Single Event Upset (SEU) injection in neural networks for robustness analysis in harsh environments.

Documentation | Quick Start

Installation

Option 1 (recommended): PyPI

# Minimal core dependencies (PyTorch, NumPy, SciPy, tqdm)
pip install seu-injection-framework

# With analysis tools (scikit-learn, pandas, matplotlib, seaborn)
pip install "seu-injection-framework[analysis]"

# Everything (development, notebooks, vision models, docs)
pip install "seu-injection-framework[all]"

Option 2: Source (development)

git clone https://github.com/wd7512/seu-injection-framework.git
cd seu-injection-framework

# Using uv (recommended for development)
uv sync --extra dev --extra analysis --extra vision --extra notebooks

# Or using pip
pip install -e ".[all]"

GPU (optional): install a CUDA-enabled PyTorch first if required:

# Example for CUDA 12.x (adjust for your system)
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
pip install seu-injection-framework

Verify installation:

python -c "from seu_injection import ExhaustiveSEUInjector; print('Ready')"

Having issues? See Installation Guide.

Quick example

import torch
from seu_injection.core import ExhaustiveSEUInjector
from seu_injection.metrics import classification_accuracy

# Create a simple model and test data
model = torch.nn.Sequential(
  torch.nn.Linear(10, 64),
  torch.nn.ReLU(), 
  torch.nn.Linear(64, 2)
)
x_test = torch.randn(100, 10)
y_test = torch.randint(0, 2, (100,))

# Initialize SEU injector
injector = ExhaustiveSEUInjector(
  trained_model=model,
  criterion=classification_accuracy, 
  x=x_test,
  y=y_test
)

# Check baseline performance
print(f"Baseline accuracy: {injector.baseline_score:.2%}")

# Inject bit flips into sign bits (bit position 0)
results = injector.run_injector(bit_i=0)
print(f"Performed {len(results['criterion_score'])} injections")

# Sample some results
fault_impacts = [injector.baseline_score - score for score in results['criterion_score']]
print(f"Average accuracy drop: {sum(fault_impacts)/len(fault_impacts):.1%}")

Full tutorial: Quick Start Guide.

Examples

Recent updates include reproducible ShipsNet experiments and improvements to injection protocols and metrics.

Features

  • Works with standard PyTorch models (no code changes required)
  • Suitable for reliability studies in harsh environments (space, nuclear, radiation)
  • Optimized bit operations (10–100× faster than naive Python)
  • Multiple injection modes: systematic per-bit or stochastic sampling
  • Optional CUDA acceleration

Contributing & support

Citation

If you use this framework in your research, please cite both the software and the research paper:

@software{seu_injection_framework,
  author = {William Dennis},
  title = {SEU Injection Framework},
  year = {2025},
  url = {https://github.com/wd7512/seu-injection-framework},
  version = {1.2.0}
}

@conference{icaart25,
  author = {William Dennis and James Pope},
  title = {A Framework for Developing Robust Machine Learning Models in Harsh Environments: A Review of CNN Design Choices},
  booktitle = {Proceedings of the 17th International Conference on Agents and Artificial Intelligence - Volume 2: ICAART},
  year = {2025},
  pages = {322-333},
  publisher = {SciTePress},
  organization = {INSTICC},
  doi = {10.5220/0013155000003890},
  isbn = {978-989-758-737-5},
  issn = {2184-433X}
}

License

This project is licensed under the MIT License - see the LICENSE file for details.


Built with ❤️ for the research community studying neural network robustness in harsh environments.

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

seu_injection_framework-1.2.1.tar.gz (3.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

seu_injection_framework-1.2.1-py3-none-any.whl (28.7 kB view details)

Uploaded Python 3

File details

Details for the file seu_injection_framework-1.2.1.tar.gz.

File metadata

  • Download URL: seu_injection_framework-1.2.1.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for seu_injection_framework-1.2.1.tar.gz
Algorithm Hash digest
SHA256 8f9780c3a1e6b8afd07db5cadc433cea7ca723613586eb2ca41546757539c4e8
MD5 25a733510cd8344f7a5852f184cec7fd
BLAKE2b-256 b0d2c9109fe958592d31e9e17a22f4e4a0ac9bb71bb569368f8b1e9b053bb037

See more details on using hashes here.

Provenance

The following attestation bundles were made for seu_injection_framework-1.2.1.tar.gz:

Publisher: release.yml on wd7512/seu-injection-framework

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file seu_injection_framework-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for seu_injection_framework-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c7dc930f118b24a4d6cb6ea24f33ee75060290cc888275a23377c2dff4edfd6c
MD5 4322fd6f1a8ac3e04757288806cac9fd
BLAKE2b-256 0586f25d9e8611f403fa3891039358a87d8eedc2c510600a5eb6d3f2d8ae2bbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for seu_injection_framework-1.2.1-py3-none-any.whl:

Publisher: release.yml on wd7512/seu-injection-framework

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page