R3AL.ai vision ONNX quantization SDK (PTQ + QAT) — pip package r3alai
Project description
r3alai
R3AL.AI is the brand. r3alai is the Python package (pip install r3alai); import it as r3alai.
Universal vision-model quantization, architecture-agnostic. Full round trip:
your_model (.pt/.h5/.tflite/...) → export to ONNX → quantize (PTQ) or qat_pipeline → quantized .onnx
↳ export_native=True → back to a native .pt (torch.nn.Module, any architecture)
No vendor lock-in: export from PyTorch, TensorFlow/Keras, Ultralytics YOLO, TFLite, Paddle, or a ready-made ONNX file. After quantization the result can be rebuilt into a plain .pt file, regardless of the source architecture (ResNet, EfficientNet, ViT, YOLO, arbitrary HuggingFace vision models, ...).
Documentation: docs.r3al.ai
Install
pip install "r3alai[vision]" # PTQ + QAT on ONNX models
pip install "r3alai[vision,yolo]" # + Ultralytics YOLO support
pip install "r3alai[all]" # all export adapters (TF, Paddle, TFLite)
For local development: pip install -e ".[vision]". QAT requires onnx2torch (included in [vision]).
Quick start
from r3alai.quant import Quantizer, QuantConfig
# PTQ: any vision ONNX (int8_dynamic is the default method)
Quantizer().quantize("efficientnet_b0.onnx", output_dir="./out")
# PTQ: static INT8 with calibration images (fastest, covers Conv layers)
Quantizer(QuantConfig(method="int8_static")).quantize(
"yolov8n.onnx",
calibration_data=["img1.jpg", "img2.jpg"],
output_dir="./out",
)
# QAT: ONNX + training images (generic pipeline)
Quantizer(QuantConfig(mode="qat")).train_qat(
"yolov8n.onnx",
calibration_data=["img1.jpg", "img2.jpg"],
output_dir="./qat_out",
epochs=3,
export_native=True,
int8_runtime=True, # also produce a genuinely smaller int8 deliverable
)
# QAT: native Ultralytics .pt in (keeps the YOLO detect/pose head intact)
Quantizer(QuantConfig(mode="qat")).train_qat(
"yolo11n-pose.pt",
calibration_data=["img1.jpg", "img2.jpg"],
output_dir="./qat_out",
source="ultralytics",
epochs=3,
export_native=True, # uses YOLO.save() -> loadable with YOLO(path)
)
Two paradigms
| Paradigm | Action | Input | Training | When |
|---|---|---|---|---|
| PTQ (post-training) | quantize |
.onnx |
No | Fast, no dataset needed (except int8_static) |
| QAT (quantization-aware training) | qat_pipeline |
.onnx + images |
Yes (epochs) |
PTQ accuracy not good enough, low bit widths |
PTQ methods (action: quantize)
method |
For | Produces a genuinely smaller int8 graph? |
|---|---|---|
int8_dynamic |
Default. ONNX Runtime dynamic INT8 (MatMul/Gemm; Conv is deliberately skipped, no reliable ConvInteger kernel) | Yes |
int8_static |
ONNX Runtime static INT8 QDQ (+ calibration images), covers Conv | Yes |
int8_static uses per_channel=True by default and automatically excludes ops close to the graph outputs from quantization (e.g. the Sigmoid/Concat of a detection head). With few calibration images those sensitive tail ops can otherwise collapse accuracy entirely (mAP ≈ 0). Override with nodes_to_exclude or per_channel=False if needed.
Both int8_static and int8_dynamic also exclude Softmax/LayerNormalization/Gelu/Erf (plus the MatMul/Gemm feeding directly into or out of a Softmax) from quantization by default: exclude_attention_sensitive_ops=True. Attention softmax and LayerNorm activations have very peaked/small-variance value ranges that saturate under a linear int8 scale; on transformer-style backbones (CLIP ViT, CLIPSeg decoders and the like) this exclusion is the difference between a working model and a full collapse. Set exclude_attention_sensitive_ops=False to disable, or pass an explicit nodes_to_exclude to override both auto-detections.
QAT (action: qat_pipeline)
Universal ONNX in → train with fake-quant layers → ONNX out. No separate method: use wbit, abit, epochs.
from r3alai.quant import Quantizer, QuantConfig
config = QuantConfig(mode="qat", qat_wbit=8, qat_abit=8)
result = Quantizer(config).train_qat(
"yolov8n.onnx",
calibration_data=["img1.jpg"],
output_dir="./qat_out",
epochs=1,
)
Export to ONNX (any architecture)
export_to_onnx picks the right adapter automatically based on file extension, or force one with source=:
source |
Input | Aliases |
|---|---|---|
ultralytics |
YOLO .pt |
yolo |
pytorch |
saved torch.nn.Module (.pt/.pth, needs input_shape) |
torch |
tensorflow |
SavedModel dir, .h5, .keras, .pb |
tf, keras |
paddle |
Paddle inference model (.pdmodel/.json + .pdiparams) |
paddlepaddle |
tflite |
.tflite |
|
onnx |
validates/stages an existing .onnx file |
from r3alai.quant.export import export_to_onnx
export_to_onnx("yolo11n-pose.pt", output_dir="./out", source="ultralytics", imgsz=640)
export_to_onnx("resnet18.pt", output_dir="./out", source="pytorch", input_shape=[1, 3, 224, 224])
export_to_onnx("model.h5", output_dir="./out", source="tensorflow")
Back to native .pt (after PTQ or QAT)
Every PTQ backend and QAT pipeline supports export_native=True: the quantized ONNX graph is rebuilt into a plain torch.nn.Module via onnx2torch and saved as .pt. Architecture-agnostic, so it works for any model the adapters above can export, not just YOLO.
result = Quantizer().quantize("resnet18.onnx", output_dir="./out", export_native=True)
# result.path contains both the .quantized.onnx and a reconstructed .pt model
Best-effort: if the reconstruction fails (e.g. exotic QuantizeLinear/QLinear* ops that onnx2torch doesn't know), the quantization job itself does not fail. The error is reported in the manifest (native_export_error) and the .onnx deliverable remains the primary, always-valid result.
QAT folds trained QuantConv2d layers back into plain fp32 Conv2d for export, so the *_qat.quantized.onnx file is float32 on disk. Pass int8_runtime=True to additionally run an ONNX Runtime static-int8 pass on top: that yields a separate, genuinely smaller deliverable (path reported as int8_runtime_output_model in the manifest / API response).
Verify your install
python -c "from r3alai.quant import Quantizer, QuantConfig; print('OK')"
python scripts/verify_sdk.py # from a source checkout: full export → PTQ → QAT → benchmark round trip
RunPod API
The RunPod serverless handler and deploy tooling live in the separate API-SDK repo, which installs r3alai as a dependency and calls the same Quantizer/QuantConfig via a JSON job payload:
{
"input": {
"action": "quantize",
"model": "/runpod-volume/models/your_model.onnx"
}
}
See that repo's docs/API.md for the full API reference.
MIT
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 r3alai-1.2.0.tar.gz.
File metadata
- Download URL: r3alai-1.2.0.tar.gz
- Upload date:
- Size: 332.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1f9a9418115dfa0d83ec3c352aefe3fe2a3d4ce04e97b46f3408a8a796b4883
|
|
| MD5 |
a460924aae18bffb4fcc8aa20aa2289d
|
|
| BLAKE2b-256 |
dbe3a3850488fd45fa218f233d637c063b595dee4993d9b76fa20e857b11b579
|
Provenance
The following attestation bundles were made for r3alai-1.2.0.tar.gz:
Publisher:
publish.yml on R3AL-AI/SDK
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
r3alai-1.2.0.tar.gz -
Subject digest:
b1f9a9418115dfa0d83ec3c352aefe3fe2a3d4ce04e97b46f3408a8a796b4883 - Sigstore transparency entry: 2200851751
- Sigstore integration time:
-
Permalink:
R3AL-AI/SDK@f603256540416a0c75febded4aa5db296de145a3 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/R3AL-AI
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f603256540416a0c75febded4aa5db296de145a3 -
Trigger Event:
release
-
Statement type:
File details
Details for the file r3alai-1.2.0-py3-none-any.whl.
File metadata
- Download URL: r3alai-1.2.0-py3-none-any.whl
- Upload date:
- Size: 73.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bc98d7b1be3dcfe144963c2815678e269b5a07ead529392b8d56e090c1390fd
|
|
| MD5 |
7b2d342ef737665076387ed442417be5
|
|
| BLAKE2b-256 |
04ff8b0e937819f43fc09dd94aac58743d3b9cf36bfe71f2240998fbf18b28c3
|
Provenance
The following attestation bundles were made for r3alai-1.2.0-py3-none-any.whl:
Publisher:
publish.yml on R3AL-AI/SDK
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
r3alai-1.2.0-py3-none-any.whl -
Subject digest:
0bc98d7b1be3dcfe144963c2815678e269b5a07ead529392b8d56e090c1390fd - Sigstore transparency entry: 2200851806
- Sigstore integration time:
-
Permalink:
R3AL-AI/SDK@f603256540416a0c75febded4aa5db296de145a3 -
Branch / Tag:
refs/tags/v1.2.0 - Owner: https://github.com/R3AL-AI
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f603256540416a0c75febded4aa5db296de145a3 -
Trigger Event:
release
-
Statement type: