Skip to main content

Lightweight robotics metrics for Python.

Project description

RoboMetrics

CI Python License PyPI

Lightweight robotics metrics for Python.

RoboMetrics is a small local Python library for computing robotics trajectory, prediction, safety, comfort, and physics metrics from NumPy arrays and simple CSV/JSON trajectory files.

Why This Exists

Robotics projects often grow scattered metric functions across notebooks, experiments, and scripts. RoboMetrics keeps common metrics in one typed, dependency-light package that can be imported directly inside local robotics codebases.

Installation

pip install robometrics

For local development:

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check .
mypy robometrics

Quickstart

import numpy as np

from robometrics import ade, fde, path_length

prediction = np.array([[0.0, 0.0], [1.0, 0.0], [2.0, 0.0]])
ground_truth = np.array([[0.0, 0.0], [1.1, 0.0], [2.2, 0.0]])

print("ADE (m):", ade(prediction, ground_truth))
print("FDE (m):", fde(prediction, ground_truth))
print("Path length (m):", path_length(ground_truth))

Runnable examples:

python examples/trajectory_metrics.py
python examples/prediction_metrics.py
python examples/safety_metrics.py
python examples/comfort_metrics.py
python examples/load_from_csv.py

Input Shapes

Trajectory-like inputs are NumPy-compatible arrays with finite numeric values:

  • Single trajectory: Nx2 or Nx3
  • Multimodal predictions: KxTx2 or KxTx3
  • Ground-truth trajectory for prediction metrics: Tx2 or Tx3
  • Actor trajectories for safety metrics: a list of Nx2 or Nx3 arrays

N or T is the number of timesteps, K is the number of prediction modes, and columns are position coordinates in meters. Nx3 inputs are supported by metrics that operate on positions; distance-based metrics use all available coordinate dimensions unless documented otherwise.

Empty arrays, NaN/inf values, bad ranks, mismatched trajectory lengths, invalid dt, and incompatible dimensions raise ValueError with a targeted message.

Units

  • Position and distance inputs: meters
  • Time step dt: seconds
  • Speed: meters per second
  • Acceleration: meters per second squared
  • Jerk: meters per second cubed
  • Curvature: inverse meters
  • Rates and scores: unitless floats

Return Types

Most public metric functions return float or numpy.ndarray. Threshold-style physics helpers return MetricResult, which stores a value, unit, optional threshold, pass/fail status, and metadata.

EvaluationResult is a small container for local batches of metric results and can export dictionaries, strict JSON, Markdown tables, and pandas DataFrames. Non-finite metric values are serialized as null in JSON.

Metric Examples

Trajectory

import numpy as np

from robometrics import curvature, path_length

trajectory = np.array([[0.0, 0.0], [1.0, 0.2], [2.0, 0.5]])

print(path_length(trajectory))  # meters
print(curvature(trajectory))    # 1/meters

Prediction

import numpy as np

from robometrics import min_ade, min_fde, miss_rate

predictions = np.array(
    [
        [[0.0, 0.0], [1.0, 0.0], [2.0, 0.0]],
        [[0.0, 0.0], [1.1, 0.0], [2.1, 0.0]],
    ]
)
ground_truth = np.array([[0.0, 0.0], [1.0, 0.1], [2.0, 0.2]])

print(min_ade(predictions, ground_truth))
print(min_fde(predictions, ground_truth))
print(miss_rate(predictions, ground_truth, threshold=0.5))

Safety

import numpy as np

from robometrics import collision_rate, min_distance_to_actors

ego = np.array([[0.0, 0.0], [1.0, 0.0], [2.0, 0.0]])
actors = [np.array([[0.0, 2.0], [1.0, 1.0], [2.0, 0.4]])]

print(min_distance_to_actors(ego, actors))                 # meters
print(collision_rate(ego, actors, ego_radius=0.3, actor_radius=0.3))

Comfort

import numpy as np

from robometrics import acceleration, jerk, jerk_cost

trajectory = np.array([[0.0, 0.0], [1.0, 0.1], [2.0, 0.4], [3.0, 0.9]])
dt = 0.5

print(acceleration(trajectory, dt=dt))  # m/s^2
print(jerk(trajectory, dt=dt))          # m/s^3
print(jerk_cost(trajectory, dt=dt))

Physics

import numpy as np

from robometrics import acceleration_limits_violated, dynamic_feasibility_score

trajectory = np.array([[0.0, 0.0], [1.0, 0.1], [2.0, 0.3], [3.0, 0.6]])

print(acceleration_limits_violated(trajectory, dt=0.5, max_accel=5.0))
print(dynamic_feasibility_score(trajectory, dt=0.5))

CSV And JSON

from robometrics.io import load_trajectory_csv, load_trajectory_json

csv_traj = load_trajectory_csv("trajectory.csv")
json_traj = load_trajectory_json("trajectory.json")

CSV files must include x and y columns, and may include z. JSON files may contain either a raw list of points or an object with a points field.

Lightweight Evaluator And Registry

The evaluator and registry are intentionally small helpers for local scripts. Use them when named metric selection or threshold reporting is useful:

from robometrics import Evaluator, registry

print(registry.list_metrics())

result = Evaluator().evaluate(
    prediction=prediction,
    ground_truth=ground_truth,
    metrics=["ade", "fde"],
    thresholds={"ade": 0.5, "fde": 1.0},
)

print(result.to_json())

Unknown metric names raise UnknownMetricError before evaluation starts. Metric execution failures are returned as failed MetricResult entries with metadata["error"].

Contributing

See CONTRIBUTING.md and docs/contributing.md.

Before opening a pull request:

ruff check .
mypy robometrics
pytest --cov=robometrics --cov-report=term-missing
python examples/trajectory_metrics.py
python examples/prediction_metrics.py
python examples/safety_metrics.py
python examples/comfort_metrics.py
python examples/load_from_csv.py

License

MIT. See LICENSE.

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

robometrics-0.1.0.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

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

robometrics-0.1.0-py3-none-any.whl (24.1 kB view details)

Uploaded Python 3

File details

Details for the file robometrics-0.1.0.tar.gz.

File metadata

  • Download URL: robometrics-0.1.0.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for robometrics-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2447187ab258098d18b34f92bd906229ccb88fe4845cac3aadd199ce5a3af7f0
MD5 ccfbd79802fa64efb57cb183903562a8
BLAKE2b-256 17f75d84f4006f2c205a2db3782cdf6a1af11bcf06d9910cb6bd37c3b1ab12c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for robometrics-0.1.0.tar.gz:

Publisher: publish-pypi.yml on gagandeepreehal/robometrics

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

File details

Details for the file robometrics-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: robometrics-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for robometrics-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52a2b9c228c1b04134d6a0a62392a7d3508e897b1cc35dd56ddd121cd647c62b
MD5 a1b9b2a619ef8c3cb1318f49f871f6ef
BLAKE2b-256 faa08c556f78b906b9f0d234791ec338aa3502768630b27719e9a93a4b8a0ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for robometrics-0.1.0-py3-none-any.whl:

Publisher: publish-pypi.yml on gagandeepreehal/robometrics

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