Skip to main content

R3AL.AI vision quantization SDK: quantize any vision model on the R3AL platform

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

r3alai-2.0.1.tar.gz (316.9 kB view details)

Uploaded Source

Built Distribution

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

r3alai-2.0.1-py3-none-any.whl (47.9 kB view details)

Uploaded Python 3

File details

Details for the file r3alai-2.0.1.tar.gz.

File metadata

  • Download URL: r3alai-2.0.1.tar.gz
  • Upload date:
  • Size: 316.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for r3alai-2.0.1.tar.gz
Algorithm Hash digest
SHA256 20cf94827b0b31486fa41bd59ba2d468cc7ba797658525056b486db8acb47544
MD5 6d72bdc9e8e69a71c8b2e54d5ba35433
BLAKE2b-256 5d897805693885f0712e2d55b420ad9754b8a5f49f19e4429cdeea67462e8b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for r3alai-2.0.1.tar.gz:

Publisher: publish.yml on R3AL-AI/SDK

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

File details

Details for the file r3alai-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: r3alai-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 47.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for r3alai-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e2b47fc6ae7dee8b973f5dc50d62ddae4cb4025188d76ec7d8e1e1155d088aa8
MD5 eec2a694b0d505e77d0fdebb87e9f1cf
BLAKE2b-256 9958a98f0891676d5e1d435239005bae230bfba3695f8883071d7d94a660e470

See more details on using hashes here.

Provenance

The following attestation bundles were made for r3alai-2.0.1-py3-none-any.whl:

Publisher: publish.yml on R3AL-AI/SDK

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