Reference implementation of the autoSAFE spec
Project description
Reference implementation of the autoSAFE specification.
autoSAFE can derive semantically correct Operational Design Domains (ODDs) purely from data. This allows to automatically generate ODDs for machine learning-based functions. The use cases range from data-driven ODD definition over ODD monitoring to retrofitting existing functions with ODDs. Moreover, if no ODD is given for a certain dataset, autoSAFE can derive one automatically to ensure safe operations of the resulting AI-based system
Installation
We recommend using uv to manage the virtual environment and dependencies.
Simply running uv sync will create a virtual environment and install all dependencies as specified in pyproject.toml.
CVXOPT
Users might want to optionally install CVXOPT for enhanced performance. However, as CVXOPT is licensed under GPL-v3, it is not included as a dependency by default. Moreover, CVXOPT is not compatible with Python versions >= 3.14 or free-threaded builds as of now.
Usage
CLI
autoSAFE provides a command-line interface (CLI) for easy interaction.
After installing the package, you can use the autosafe command in your terminal:
uv run autosafe --help
This will list all available commands and options. They are described in detail in the documentation.
Common CLI Commands
Here are the most frequently used commands:
Monte Carlo Sampling and Evaluation
# Run Monte Carlo sampling with default 2D box ODD
autosafe montecarlo sample --dim 2 --odd-limits 5.0 --samples 1000 --filename mc_results.json
# Evaluate results and generate precision/recall plots
autosafe montecarlo evaluate mc_results.json
ODD Comparison Methods
# Quick comparison with default parameters
autosafe comparison quick data/WineQT.csv --export results.json
# Full comparison with custom parameters
autosafe comparison evaluate data/WineQT.csv \
--methods knn kmeans density \
--knn-k 5 --kmeans-clusters 4 --density-gamma 0.01
Custom ODD with Inequalities
# Use YAML config for polytope with inequality constraints
autosafe montecarlo sample --odd-config odd_config.yaml
API
autoSAFE also offers a Python API for more advanced usage. To start, you can read your data from a CSV file and create an autoSAFE ODD as follows:
import autosafe as af
import numpy as np
# Load data from a CSV file
odd = af.from_csv(af.ROOT_FOLDER / "data" / "iris.csv")
# Query the ODD for a new data point
affinity_threshold = 0.8
data_point = np.array([[5.1, 3.5, 1.4, 0.2]])
is_within_odd = odd.contains(data_point) >= affinity_threshold
print(f"The data point is within the ODD: {is_within_odd}")
Developing
Pre-Commit Hooks
We use prek to manage pre-commit hooks for code quality and consistency. To install the pre-commit hooks, run the following command from the project root:
uv run prek install
Tests
We use pytest for testing. To run the test suite, execute the following command from the project root:
uv run pytest
License
Copyright and license information are provided in accordance to the REUSE Specification 3.3.
Project details
Release history Release notifications | RSS feed
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 autosafe-1.0.1.tar.gz.
File metadata
- Download URL: autosafe-1.0.1.tar.gz
- Upload date:
- Size: 111.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24293fac3439094527ba1a30c649b401a27650aea4554b603cdb9f6fd5bc5f58
|
|
| MD5 |
70c59bcb7f44899967dfc7ec35173499
|
|
| BLAKE2b-256 |
6726234742c10abd6bf7f77de1063c2c8b13d285ba8fd07eec58d71d77d1ebcb
|
File details
Details for the file autosafe-1.0.1-py3-none-any.whl.
File metadata
- Download URL: autosafe-1.0.1-py3-none-any.whl
- Upload date:
- Size: 146.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4ef4990ef72954d547e3dcceed0b16c6907ceaaa84572dbc6c0ed6234306b98
|
|
| MD5 |
2034c8f1a8fdd13f40c9d555fc2ab610
|
|
| BLAKE2b-256 |
640d12bec61c87e79d9286b65642bf32b734af53caaaf44724267e9236e42ab9
|