Skip to main content

Auspex

One model for every annotation type used in computer-vision labeling work: bounding boxes, instance polygons, keypoints, polylines, and image-level tags — trained on your own data with a few lines of code.

Supported annotation formats: COCO JSON, CVAT-for-images 1.1 XML, Pascal VOC XML — mixed freely in one training run.

Install

pip install auspex-vision        # import name: auspex

Wheels for Linux x86_64, Windows, and macOS Apple Silicon, Python 3.10–3.13. An NVIDIA GPU is recommended for training (precision is picked automatically for your hardware); CPU works for inference.

Use

from auspex import Auspex

model = Auspex(labelspace="labelspace.yaml")
model.train(data="data.yaml", epochs=150)          # train on your own data
results = model.predict("images/", save=True)      # detect

model = Auspex(weights="best.pt")                  # checkpoints are self-contained
model.val(data="data.yaml")

Or the console command: auspex train --data data.yaml --labelspace labelspace.yaml, auspex predict --weights best.pt --source images/, auspex val --weights best.pt --data data.yaml.

Pre-labeling workflow

Send model predictions straight back to your labeling tool:

model.predict("images/", export="cvat")     # CVAT-for-images 1.1 XML pre-labels
model.predict("images/", export="coco")     # or COCO JSON
model.predict("huge_scans/", tiles="auto")  # tile very large images so small
                                            # objects stay detectable

Training quality features: a val split in data.yaml enables validation during training (best.pt tracks real validation fitness, per-class AP is logged, --patience N stops early); --class-balance oversamples images containing rare classes; auspex calibrate --weights best.pt --data data.yaml stores per-class confidence thresholds in the checkpoint so classes with different score scales all show up at their own best operating point.

Very small objects

If your objects are only a few pixels across at training resolution, the default detection grid (finest stride 8) cannot resolve them. Two options, in a train.yaml:

model:
  strides: [4, 8, 16, 32]   # adds a finer detection level
train:
  micro_batch: 2            # ~4x the anchors; halve the batch at 768 px
augment:
  native_crop_p: 0.5        # or: train on zoomed windows of large source images

Measured on a set where half the objects were smaller than one grid cell, the finer level roughly doubled F1 on the smallest classes. It is a trade, not a free win: long thin objects (road-like lines spanning much of the frame) tend to fragment into several detections, so leave it off for those. Both settings are off by default.

Data configuration

labelspace.yaml — your categories (order = class id), keypoint names + flip_pairs for skeleton classes, is_polyline: true for polyline classes, and image-level tags.

data.yaml — one entry per annotation source:

sources:
  - name: batch1
    path: annotations/batch1.xml   # CVAT 1.1 XML | COCO .json | VOC xml dir
    images_root: images/
    split: train
    provides: {rect: true, polygon: true, keypoint: false, polyline: false, tag: false}

provides declares which tasks a source actually labels — unlabeled tasks contribute nothing to training, so sources with different annotation coverage mix safely.

Growing a model over time: --transfer <checkpoint> continues from existing weights even when classes were added or reordered; --source-balance rebalances very unequal sources; --cache-records keeps memory flat on large datasets.

Trial and licensing

Training is free for 30 days, in full — no key, no sign-up, no feature limits. The clock starts on your first training run.

Prediction, validation, calibration and export are never gated. They keep working after the trial ends, on any model you have already trained, forever. Evaluating Auspex against your own data does not require buying anything.

After 30 days, training needs a licence key:

export AUSPEX_LICENSE=AUSPEX-...        # or write the key to ~/.auspex/license.key

Keys are verified offline against a public key compiled into the wheel — nothing phones home, so training works on air-gapped machines and this never sits in the critical path of your build.

Get a key: https://heliontechltd.com/license

License

Proprietary software under an End-User License Agreement: licensed users may install and run Auspex and train models on their own data (the resulting weights are theirs); copying, redistribution, modification, and reverse engineering are prohibited. See https://heliontechltd.com/license for terms and licensing inquiries.

Release files for auspex-vision 0.5.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for auspex-vision 0.5.0
File
auspex_vision-0.5.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
auspex_vision-0.5.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
auspex_vision-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
auspex_vision-0.5.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
auspex_vision-0.5.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
auspex_vision-0.5.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
auspex_vision-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
auspex_vision-0.5.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
auspex_vision-0.5.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
auspex_vision-0.5.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
auspex_vision-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
auspex_vision-0.5.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
auspex_vision-0.5.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
auspex_vision-0.5.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
auspex_vision-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
auspex_vision-0.5.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 87.2 MB

Release files / auspex_vision-0.5.0-cp313-cp313-win_amd64.whl

Download URL auspex_vision-0.5.0-cp313-cp313-win_amd64.whl
Size 2.1 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
72f323c147ee7d9fe39ed365e44468a6c7f2601164b36ac5a998cd8fef65c8aa
BLAKE2b-256 checksum
How to use checksums
abe47a637e070d82585f9f810b40fe7537117c6c4c9ae8a8b21863d9b2e97734
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp313-cp313-win32.whl

Download URL auspex_vision-0.5.0-cp313-cp313-win32.whl
Size 1.9 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
c71f4c499f66c48fff9135622dba90356a354c3b0de3d90bc088092d7e09eacc
BLAKE2b-256 checksum
How to use checksums
ba0970a237a6221c8a88b0af38261948b6fbff0624d563ab1581bd368162dec5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL auspex_vision-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.5 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
27c9e129ca7e76796ca826917fa3315557436e48256ae9e7399d9afc4fcb454a
BLAKE2b-256 checksum
How to use checksums
723e3600dd3e6cbc7c43a4b142776c2878146137d496c39bbc81b21d7271453f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL auspex_vision-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Size 2.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3795e1ea0d4d249b0a4f8183f8b5acf94654c9db41cdf93257fbc442e38f12a0
BLAKE2b-256 checksum
How to use checksums
b509291ff7c4590c556e7681703dfdcdc69127330ca4364696cc958cd2debaa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp312-cp312-win_amd64.whl

Download URL auspex_vision-0.5.0-cp312-cp312-win_amd64.whl
Size 2.1 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a4d751b8be7a5ebfbfc8405fb2c66b112e38eb726d279a041289a60ed775e20a
BLAKE2b-256 checksum
How to use checksums
d508b46d23bc752789c8893f412b61fb6c16a90643f6951b11d8b011f7b483d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp312-cp312-win32.whl

Download URL auspex_vision-0.5.0-cp312-cp312-win32.whl
Size 1.9 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
40331a07703bfde2bc60e23652b1bd37b10692b052e346f5ee8c609ef2832edd
BLAKE2b-256 checksum
How to use checksums
62fc1cac78805c360df31538164fd95727d0b4c7ebc23a5fc0a04756e3368f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL auspex_vision-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
96e00abde18b1aa30b39f0e8bba78f018312d7afd1be82f72df6b60c34cdba8e
BLAKE2b-256 checksum
How to use checksums
5a7caca7d1060c12a762b0f0f69e31f45a3c96e36053f2833d22c42a87dee50e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL auspex_vision-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Size 2.5 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0fc1a4532991a19b0140340555a053916380dc5d7daa40eb2bc02c36426f6789
BLAKE2b-256 checksum
How to use checksums
2bc9524c093b6765e7ec0c2628c478200f9c90f57a5b53ffdc9f5a7587461dc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp311-cp311-win_amd64.whl

Download URL auspex_vision-0.5.0-cp311-cp311-win_amd64.whl
Size 2.2 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a335bbbf1882501cf20242576ba93e0b3c6ef9a3fbedcdd33e00b38a8dfb4c23
BLAKE2b-256 checksum
How to use checksums
964de4dbb603b5fa2feded26b09085e34e6b4587b896907472f7196226d1efe0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp311-cp311-win32.whl

Download URL auspex_vision-0.5.0-cp311-cp311-win32.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
3989087adeb8af485e34a3c183f86ee6a9e1a41884ab515a041b71e9b930fc9c
BLAKE2b-256 checksum
How to use checksums
a86b6ef0706e831f74bf0f6bff67f640c69b5c314141c7b7e4efd9ae8c361768
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL auspex_vision-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2c7883e5e71ce4348aceedc369787227e08a0fcc6d81b822ceb776bd4483ba10
BLAKE2b-256 checksum
How to use checksums
b9eb4e0e0074b8ba55e1f8b2c6b4aa06a6b19e0967f6598f14719e7abd5138c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL auspex_vision-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Size 2.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
99c4a0d09a8dc1f61f17903b01813ffb3f1f2024b237f9d9d0240e53f734053f
BLAKE2b-256 checksum
How to use checksums
8d21dae467e28aad985af9d3a036820e8692c2cbfa1fb2f7140bd9e8c75a5732
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp310-cp310-win_amd64.whl

Download URL auspex_vision-0.5.0-cp310-cp310-win_amd64.whl
Size 2.2 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
45d46b34c0e0e7a5dfba4301a958b6d14bc0f9b61a03204c4b41518404669c4a
BLAKE2b-256 checksum
How to use checksums
59170c4f93718145cb3f7d7144ec31cec2f0f771a41890d09e74828b38f4ef40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp310-cp310-win32.whl

Download URL auspex_vision-0.5.0-cp310-cp310-win32.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d9a338d626402a2eeb44ba30fd258cc31fc72f61502a5d05c481f482819f5fee
BLAKE2b-256 checksum
How to use checksums
8491684192eb9fd7b1282eba91617063e718524ce5977cfbc44f2672a264c123
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL auspex_vision-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.5 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
87a750cb4d220c79a680533e04b52531c8f7cba93a3dd00c4f1f240b32e61ee2
BLAKE2b-256 checksum
How to use checksums
e8017a20b3d3c0c9fb8bd75ca67551502858e05de75bdd8bf30264bae3941e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / auspex_vision-0.5.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL auspex_vision-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Size 2.5 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c5f3fd96137ba98add08f355bf08c4ccb1e64f068c89bd2587b515d07e0361f5
BLAKE2b-256 checksum
How to use checksums
643ffe81c4a11e28f1efee2b0645f232c1eb0bdcc4378e6f5bd756d33a4b54f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

0.7.0

16 release files

0.6.0

16 release files

This release

0.5.0 This release

16 release files

0.1.2

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page