Skip to main content

ZADU

A-to-Z python library for evalUating Dimensionality reduction


ZADU is a Python library that provides distortion measures for evaluating and analyzing dimensionality reduction (DR) embeddings. The library supports a diverse set of local, cluster-level, and global distortion measures, allowing users to assess DR techniques from various structural perspectives. By offering an optimized execution and pointwise local distortions, ZADU enables efficient and in-depth analysis of DR embeddings.

Installation

You can install ZADU via pip:

pip install zadu

Quick Start

Run two metrics (tnc, mrre) on random data:

import numpy as np
from zadu import ZADU

rng = np.random.default_rng(0)
hd = rng.normal(size=(200, 16))
ld = hd[:, :2] + 0.05 * rng.normal(size=(200, 2))

spec = [
    {"id": "tnc", "params": {"k": 20}},
    {"id": "mrre", "params": {"k": 20}},
]

scores = ZADU(spec, hd).measure(ld)
print(scores)

Input checklist:

  • hd (orig) and ld (emb) must be finite 2D numeric arrays with the same number of rows.
  • For neighbor-based metrics with k, use 1 <= k < n.
  • For tnc and ca_tnc, the standard normalization additionally requires k < n / 2.
  • Pass label to measure(ld, label) for label-based metrics (nh, ca_tnc, dsc, ivm, c_evm, l_tnc, cadi). Labels may be strings or arbitrary numeric values.
  • Metrics that are mathematically undefined for constant distances, a single class, or coincident neighborhoods raise ValueError instead of returning nan or inf.

Use ZADU with Context7

This repository is prepared for Context7 indexing so AI coding assistants can fetch up-to-date ZADU docs and examples.

For Users (Cursor / Claude Code)

Install Context7 MCP (recommended: remote HTTP with API key) to your coding assistant.

Refer to Context7 Installation for detailed instructions.

Add the following rule (so users do not have to type use context7 each time) to agent instructions like CLAUDE.md or AGENTS.md:

Always use Context7 MCP when I need library/API documentation, code generation, setup, or configuration steps. When users want to evaluate dimensionality reduction embeddings or you think that the evalaution is necessary, use Context7 to access ZADU documentation and examples. You can access via "/hj-n/zadu" path.

Supported Distortion Measures

ZADU currently supports a total of 22 distortion measures, including:

  • 7 local measures
  • 6 cluster-level measures
  • 8 global measures
  • 1 gap-based regional measure

For a complete list of supported measures, refer to measures. The library initially provided 17 measures when it was first introduced by our academic paper. We later added label trustworthiness & continuity, non-metric stress, scale-normalized stress, the class angular distortion index, and the gap index.

How To Use ZADU

ZADU provides two different interfaces for executing distortion measures. You can either use the main class that wraps the measures, or directly access and invoke the functions that define each distortion measure.

Using the Main Class

Use the main class of ZADU to compute distortion measures. This approach benefits from the optimization, providing faster performance when executing multiple measures.

from zadu import zadu

hd, ld = load_datasets()
spec = [{
    "id"    : "tnc",
    "params": { "k": 20 },
}, {
    "id"    : "snc",
    "params": { "k": 30, "clustering_strategy": "dbscan" }
}]

scores = zadu.ZADU(spec, hd).measure(ld)
print("T&C:", scores[0])
print("S&C:", scores[1])

hd represents high-dimensional data, ld represents low-dimensional data

You can also use a typed helper for better IDE autocomplete:

from zadu import ZADU, MEASURE, make_spec

spec = [
    make_spec(MEASURE.TNC, k=20),
    make_spec(MEASURE.SNC, k=30, clustering_strategy="dbscan"),
]
scores = ZADU(spec, hd).measure(ld)

MEASURE enum mapping (typed helper):

MEASURE ID Metric Name
MEASURE.TNC tnc Trustworthiness & Continuity
MEASURE.MRRE mrre Mean Relative Rank Error
MEASURE.LCMC lcmc Local Continuity Meta-Criteria
MEASURE.NH nh Neighborhood Hit
MEASURE.CA_TNC ca_tnc Class-Aware Trustworthiness & Continuity
MEASURE.L_TNC l_tnc Label Trustworthiness & Continuity
MEASURE.ND nd Neighbor Dissimilarity
MEASURE.DTM dtm Distance-to-Measure
MEASURE.KL_DIV kl_div Kullback-Leibler Divergence
MEASURE.DSC dsc Distance Consistency
MEASURE.PR pr Pearson's Correlation Coefficient
MEASURE.SRHO srho Spearman's Rank Correlation Coefficient
MEASURE.IVM ivm Internal Validation Measure
MEASURE.C_EVM c_evm Clustering + External Validation Measure
MEASURE.SNC snc Steadiness & Cohesiveness
MEASURE.TOPO topo Topographic Product
MEASURE.PROC proc Procrustes Measure
MEASURE.STRESS stress Stress
MEASURE.SN_STRESS sn_stress Scale-Normalized Stress
MEASURE.NM_STRESS nm_stress Non-Metric Stress
MEASURE.CADI cadi Class Angular Distortion Index
MEASURE.GI gi Gap Index

ZADU Class

The ZADU class provides the main interface for the Zadu library, allowing users to evaluate and analyze dimensionality reduction (DR) embeddings effectively and reliably.

Class Constructor

The ZADU class constructor has the following signature:

class ZADU(
    spec_list,
    orig,
    return_local: bool = False,
    verbose: bool = False,
    geodesic: bool = False,
    max_memory_bytes: int | None = None,
    execution: ExecutionConfig | None = None,
)

Exact Execution Planning

ZADU plans pair reductions, distance matrices, neighbor tables, and full rankings as typed exact resources. Compatible requests are computed once: a larger k serves smaller prefixes, a full ranking also serves metrics that only need kNN indices, and Stress, Scale-Normalized Stress, and Pearson share one exact pass over unique point pairs. Spearman and Non-Metric Stress share one exact, tie-aware original-space pair order across repeated embeddings.

Pair-only specifications avoid two persistent n x n distance matrices. The planner uses compact upper-triangle storage when it fits, switches to bounded block streaming for larger or memory-constrained workloads, and reuses dense matrices when another requested metric already needs them. Every point pair is still evaluated; neither path is approximate.

Metrics that require a global pair order cannot use block streaming. For those metrics, an explicit memory budget that cannot hold the exact condensed/order plan raises MemoryError before distance allocation begins.

Topographic Product keeps exact stable neighbor ordering without persistent n x n matrices. Its neighbor search uses bounded distance-row blocks, the metric evaluates only the O(nk) distances selected by the two neighbor tables, and multiple requested k values share one maximum-k prefix calculation.

The execution configuration exposes the default exact NumPy/FAISS CPU path, optional MLX and PyTorch previews, and a human-readable memory budget:

from zadu import ExecutionConfig, ZADU

runner = ZADU(
    spec,
    hd,
    execution=ExecutionConfig(
        backend="auto",       # "auto", "numpy", "mlx", or "torch"
        device="auto",        # backend-specific CPU/GPU selection
        dtype=None,            # NumPy preserves the float64 execution baseline
        memory_budget="4GiB",
        embedding_workers=1,   # opt-in measure_many() workers
    ),
)
scores = runner.measure(ld)
print(runner.last_run_info)

last_run_info is separate from metric scores. It records the exact backend, resource providers, selected pair strategy and block size, estimated cache and peak working memory, dtype, construction and metric timings, release/reuse, and each resource's first and last consumer.

See the backend capability table for dtype/device support, fallback boundaries, CUDA validation status, and the provisional third-party zadu.backends entry-point contract.

Optional MLX preview

On Apple Silicon, install MLX separately and select it explicitly:

pip install "zadu[mlx]"
runner = ZADU(
    spec,
    hd,
    execution=ExecutionConfig(
        backend="mlx",
        device="gpu",
        dtype="float32",
        memory_budget="4GiB",
        embedding_workers=4,  # native MLX batch width for measure_many()
    ),
)
scores = runner.measure(ld)

The MLX preview accelerates Euclidean distance matrices, condensed pair distances, stable full/inverse rankings, exact stable neighbor prefixes, and Topographic Product's stable-kNN tables. A distance matrix already produced by MLX is shared with dependent ranking work through unified memory instead of being copied back to the device. Unsupported derived statistics and geodesic resources fall back individually to NumPy/SciPy/FAISS; each choice and fallback reason is recorded per resource. Importing or using the default package does not import MLX.

MLX GPU execution requires an explicit dtype="float32". ZADU never silently casts to lower precision: use device="cpu", dtype="float64" for the MLX CPU path. Float32 uses the same exact algorithms but has dtype-specific numerical tolerances. Stable sorting preserves self exclusion and uses the original column index to break duplicate-distance ties. Diagnostics record unified-memory reuse, the distance source, block bounds, input/output boundaries, first compile/execution, and warm execution separately.

FAISS remains faster for a standalone ordinary kNN table on the current Apple M4 benchmark, while MLX is substantially faster for full rankings and stable kNN. backend="auto" therefore remains on the existing NumPy/FAISS path; select MLX explicitly for a workload that benefits from its supported resources.

For measure_many(), setting embedding_workers above one selects native MLX tensor batching rather than Python worker threads. Equal-shaped embeddings are stacked up to that batch width; the memory budget may lower the effective width or select ordinary sequential execution when even a two-item batch would exceed the bound. Results and failures retain input order. Different embedding dimensions, or a plan without an MLX-batchable embedded resource, fall back to ordered sequential execution and record the reason in last_run_info. Diagnostics expose provider_batching, native_batch_size, per-resource batch indices, aggregate batch timings, and the memory-bounded planned peak.

Optional PyTorch preview

Install PyTorch through the focused extra and select it explicitly:

pip install "zadu[torch]"
runner = ZADU(
    spec,
    hd,
    execution=ExecutionConfig(
        backend="torch",
        device="mps",       # "cpu", "mps", "cuda", or "auto"
        dtype="float32",    # use float64 on CPU/CUDA when required
        memory_budget="4GiB",
    ),
)
scores = runner.measure(ld)

The PyTorch preview accelerates exact Euclidean distance matrices, condensed pair distances, stable full/inverse rankings, and exact stable neighbor prefixes with memory-planned row blocks. Unsupported derived resources and geodesic requests fall back individually and are identified in last_run_info. MPS supports float32 in this backend; CPU and CUDA accept float32 or float64. No PyTorch import occurs on the base/default path, and backend="auto" remains NumPy/FAISS.

Ranking uses torch.argsort(..., stable=True), forces self to rank zero, then removes self from the returned neighbor prefix. It deliberately does not use bare torch.topk, whose tied indices are not stable. This preserves original column order for duplicate-distance ties and means even a small exact prefix performs a full row sort.

CPU and Apple MPS are covered by the maintained parity tests. CUDA uses the same implementation but should be treated as unvalidated until the test suite and benchmark are run on real CUDA hardware. Device support does not imply a speedup: cold setup, transfers, and warm execution are reported separately, and the best backend depends on the workload and hardware.

For measure_many(), embedding_workers selects the requested native PyTorch batch width. Equal-shaped embeddings use batched cdist and stable sorting; the memory budget may lower the width or fall back to ordered sequential execution. CPU batching is supported for consistency but was neutral to slightly slower on the maintained M4 workload, while MPS benefited from amortized launch and transfer costs. Treat this as an explicit workload knob, not an automatic speedup promise.

Evaluate an ordered collection of embeddings with the same exact plan and one shared set of immutable original-space resources:

results = runner.measure_many([umap_embedding, tsne_embedding, pca_embedding])
batch_info = runner.last_run_info

measure_many() returns one normal measure() result per input embedding, in input order. If a configured metric requires labels, pass one shared label vector as labels=. The default embedding_workers=1 executes sequentially. Set a larger value to opt into exact thread-level collection execution on the NumPy backend, or provider-native tensor batching on MLX:

runner = ZADU(
    spec,
    hd,
    execution=ExecutionConfig(
        embedding_workers=2,
        memory_budget="4GiB",
    ),
)
results = runner.measure_many(embeddings, labels=labels)

Original-space resources are frozen and shared; each in-flight embedding owns a separate mutable embedded/paired cache. The planner caps workers by input count and memory_budget, submits only one worker-sized batch at a time, and limits native library threads to avoid oversubscription. Fixed-seed SNC uses one inner iteration worker when multiple embeddings run concurrently. Mutable or global random-state configurations that cannot preserve ordered behavior fall back to the sequential path with the reason recorded in diagnostics.

Batch diagnostics include requested/effective workers, aggregate timings, planned collection peak memory, original-resource reuse, and full per-embedding diagnostics under last_run_info["runs"]. Execution failures raise EmbeddingExecutionError with the failing input index. A ZADU instance is mutable and should not be called concurrently from multiple user threads.

Parameters:

spec

     A list of dictionaries that define the distortion measures to execute and their hyperparameters. Each dictionary must contain the following keys:

  • "id": The identifier of the distortion measure, such as "tnc" or "snc".

  • "params": A dictionary containing hyperparameters specific to the chosen distortion measure.

List of ID/Parameters for Each Function

Warning: While using dsc, ivm, c_evm, nh, and ca_tnc, please be aware that these measures assume that class labels are well-separated in the original high-dimensional space. If the class labels are not well-separated, the measures may produce unreliable results. Use the measure only if you are confident that the class labels are well-separated. Please refer to the related academic paper for more detail.

Local Measures
Measure ID Parameters Range Optimum
Trustworthiness & Continuity tnc k=20 [0.5, 1] 1
Mean Relative Rank Errors mrre k=20 [0, 1] 1
Local Continuity Meta-Criteria lcmc k=20 [-k/(n-1), 1-k/(n-1)] 1-k/(n-1)
Neighborhood hit nh k=20 [0, 1] 1
Neighbor Dissimilarity nd k=20 R+ 0
Class-Aware Trustworthiness & Continuity ca_tnc k=20 [0.5, 1] 1
Procrustes Measure proc k=20 R+ 0
Cluster-level Measures
Measure ID Parameters Range Optimum
Steadiness & Cohesiveness snc iteration=150, walk_num_ratio=0.3, alpha=0.1, k=None, clustering_strategy="dbscan", random_state=None, n_jobs=1 [0, 1] 1
Distance Consistency dsc [0, 1] 1
Internal Validation Measures ivm measure="silhouette" Depends on IVM Depends on IVM
Clustering + External Clustering Validation Measures c_evm measure="arand", clustering="kmeans", clustering_args=None Depends on EVM Depends on EVM
Label Trustworthiness & Continuity1 l_tnc cvm="dsc" [0, 1] 1
Class Angular Distortion Index cadi n_triplets=0, random_seed=None [0, 1] 0
Global Measures
Measure ID Parameters Range Optimum
Stress stress R+ 0
Non-metric stress nm_stress R+ 0
Scale-normalized stress sn_stress R+ 0
Kullback-Leibler Divergence kl_div sigma=0.1 R+ 0
Distance-to-Measure dtm sigma=0.1 R+ 0
Topographic Product topo k=20 R 0
Pearson’s correlation coefficient pr [-1, 1] 1
Spearman’s rank correlation coefficient srho [-1, 1] 1

Pearson and Spearman correlations use each unique off-diagonal distance once (the upper triangle of each distance matrix). Stress-family and density-family metrics reject all-zero distance matrices because their normalizations are undefined there.

Gap-based Regional Measures
Measure ID Parameters Range Optimum
Gap Index2 gi metric="euclidean" [0, 1] 0

The Gap Index operates on empty triangular regions of a 2D projection rather than fitting cleanly into the local, cluster-level, or global categories above. It supports a SciPy distance function or function name, and metric="precomputed" when hd is a square distance matrix.

String Option Values

  • ivm (internal_validation_measure): silhouette, calinski_harabasz, davies_bouldin
  • c_evm (clustering_and_external_validation_measure)
    • measure: arand, ami, nmi, vmeasure
    • clustering: kmeans, dbscan
    • When clustering="kmeans", n_clusters defaults to the number of unique labels and random_state defaults to 0; both can be overridden in clustering_args.
  • l_tnc (label_trustworthiness_and_continuity): cvm = dsc, ch_btw

If an invalid option string is passed, ZADU raises a ValueError with allowed values.

Return Key Summary

  • tnc -> trustworthiness, continuity
  • mrre -> mrre_false, mrre_missing
  • ca_tnc -> ca_trustworthiness, ca_continuity
  • l_tnc -> label_trustworthiness, label_continuity
  • snc -> steadiness, cohesiveness
  • cadi -> class_angular_distortion_index
  • gi -> gap_index
  • ivm -> key is the selected measure name (e.g., silhouette)
  • c_evm -> key is {clustering}_{measure} (e.g., kmeans_arand)

For return_local=True, local keys are returned in a second list entry per metric where supported.

hd

     A high-dimensional dataset (numpy array) to register and reuse during the evaluation process.

return_local

     A boolean flag that, when set to True, enables the computation of local pointwise distortions for each data point. The default value is False.

Directly Accessing Functions

You can also directly access and invoke the functions defining each distortion measure for greater flexibility.

from zadu.measures import *

mrre = mean_relative_rank_error.measure(hd, ld, k=20)
pr  = pearson_r.measure(hd, ld)
nh  = neighborhood_hit.measure(ld, label, k=20)

Advanced Features

Optimizing the Execution

ZADU automatically optimizes the execution of multiple distortion measures. Its explicit metric registry shares exact pair statistics, densities, rankings, and nearest-neighbor indices while retaining the largest requested k, so mixed-k specifications remain equivalent to direct metric calls. Pair-only Stress, Scale-Normalized Stress, and Pearson runs use condensed or memory-bounded streaming resources; metrics requiring full ranks or global distance ordering still need O(n²) storage. ZADU(...).estimated_cache_bytes exposes the persistent-cache estimate, while last_run_info["planned_peak_bytes"] includes package-managed working memory. Pass max_memory_bytes= or ExecutionConfig(memory_budget=...) to select a bounded strategy or fail before an oversized package-managed allocation.

S&C (snc) reuses the planner's exact kNN tables, keeps full weighted-SNN graphs sparse, and batches cluster-pair reductions. Set n_jobs above 1 to opt into deterministic thread-level iteration evaluation; the default remains 1 because parallel overhead can outweigh the benefit on smaller workloads. With a memory budget, ZADU may reduce the effective worker count. The requested/effective counts and conservative working-set estimate are recorded in last_run_info["snc_strategy"].

For spherical coordinates, pass geodesic=True to ZADU. In that mode orig[:, 0] is longitude, orig[:, 1] is latitude, and both must be expressed in radians. Geodesic distance is used only for the registered original space; embedded-space distances remain Euclidean.

Computing Pointwise Local Distortions

Users can obtain local pointwise distortions by setting the return_local flag. If a specified distortion measure produces local pointwise distortion as intermediate results, it returns a list of pointwise distortions when the flag is raised.

from zadu import zadu

spec = [{
    "id"    : "dtm",
    "params": {}
}, {
    "id"    : "mrre",
    "params": { "k": 30 }
}]

zadu_obj = zadu.ZADU(spec, hd, return_local=True)
global_, local_ = zadu_obj.measure(ld)
print("MRRE local distortions:", local_[1])

Visualizing Local Distortions

With the pointwise local distortions obtained from ZADU, users can visualize the distortions using various distortion visualizations. We provide ZADUVis, a python library that enables the rendering of two disotortion visualizations: CheckViz and the Reliability Map.

img

from zadu import zadu
from zaduvis import zaduvis
import matplotlib.pyplot as plt
from sklearn.manifold import TSNE
from sklearn.datasets import fetch_openml


hd = fetch_openml('mnist_784', version=1, cache=True).data.to_numpy()[::7]
ld = TSNE().fit_transform(hd)

## Computing local pointwise distortions
spec = [{
    "id": "tnc",
    "params": {"k": 25}
},{
    "id": "snc",
    "params": {"k": 50}
}]
zadu_obj = zadu.ZADU(spec, hd, return_local=True)
scores, local_list = zadu_obj.measure(ld)

tnc_local = local_list[0]
snc_local = local_list[1]

local_trustworthiness = tnc_local["local_trustworthiness"]
local_continuity = tnc_local["local_continuity"]
local_steadiness = snc_local["local_steadiness"]
local_cohesiveness = snc_local["local_cohesiveness"]

fig, ax = plt.subplots(1, 4, figsize=(50, 12.5))
zaduvis.checkviz(ld, local_trustworthiness, local_continuity, ax=ax[0])
zaduvis.reliability_map(ld, local_trustworthiness, local_continuity, k=10, ax=ax[1])
zaduvis.checkviz(ld, local_steadiness, local_cohesiveness, ax=ax[2])
zaduvis.reliability_map(ld, local_steadiness, local_cohesiveness, k=10, ax=ax[3])

The above code snippet demonstrates how to visualize local pointwise distortions using CheckViz and Reliability Map plots, where the results are shown below.

mnist_1:7

Documentation

For more information about the available distortion measures, their use cases, and examples, please refer to our paper (IEEE VIS 2023 Short).

Citation

Hyeon Jeon, Aeri Cho, Jinhwa Jang, Soohyun Lee, Jake Hyun, Hyung-Kwon Ko, Jaemin Jo, and Jinwook Seo. Zadu: A python library for evaluating the reliability of dimensionality reduction embeddings. In 2023 IEEE Visualization and Visual Analytics (VIS), pages 196–200, 2023.

@INPROCEEDINGS{jeon23vis,
  author={Jeon, Hyeon and Cho, Aeri and Jang, Jinhwa and Lee, Soohyun and Hyun, Jake and Ko, Hyung-Kwon and Jo, Jaemin and Seo, Jinwook},
  booktitle={2023 IEEE Visualization and Visual Analytics (VIS)}, 
  title={ZADU: A Python Library for Evaluating the Reliability of Dimensionality Reduction Embeddings}, 
  year={2023},
  volume={},
  number={},
  pages={196-200},
  keywords={Dimensionality reduction;Visual analytics;Design methodology;Distortion;Libraries;Time measurement;Distortion measurement;Human-centered computing;Visualization;Visualization design and evaluation methods},
  doi={10.1109/VIS54172.2023.00048}}
  1. The current implementation does not apply the rescaling step from the original paper on the cvm score when cvm='dsc'. The original transformation was intended to map the DSC score into the [0,1] range, but it is not needed here.

  2. Introduced by Jaume Ros, Alessio Arleo, and Fernando Paulovich (paper, reference implementation); ZADU retains the original MIT license and provenance notice.

Download files

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

Source Distribution

zadu-0.5.1.tar.gz (103.3 kB view details)

Uploaded Source

Built Distribution

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

zadu-0.5.1-py3-none-any.whl (103.1 kB view details)

Uploaded Python 3

File details

Details for the file zadu-0.5.1.tar.gz.

File metadata

  • Download URL: zadu-0.5.1.tar.gz
  • Upload date:
  • Size: 103.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zadu-0.5.1.tar.gz
Algorithm Hash digest
SHA256 ebf71fed38511d17a596daacd5aa57f830d9e41672ad39312315aeec007b932a
MD5 3fa3181aef974880e9952002c041f0c9
BLAKE2b-256 1317b40c0d78ba5084af506422e617e161969e8f9d78d63399e6098702d1be29

See more details on using hashes here.

Provenance

The following attestation bundles were made for zadu-0.5.1.tar.gz:

Publisher: publish-pypi.yml on hj-n/zadu

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

File details

Details for the file zadu-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: zadu-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 103.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zadu-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b4b9deaa546cc40dcc152bb6564399b34f786b5751b477980c8af3a3458c31fd
MD5 61f77650db1c23f575f94c4994bb56ce
BLAKE2b-256 149f34ec7fd0ebb4bc4d2a5dfd3db2c959038e08a42f9b830f89acd04c17717d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zadu-0.5.1-py3-none-any.whl:

Publisher: publish-pypi.yml on hj-n/zadu

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

Release history Release notifications | RSS feed

0.5.3

2 files

0.5.2

2 files

This release

0.5.1 This release

2 files

0.5.0

2 files

0.4.2

2 files

0.4.1

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.2

2 files

0.0.1

2 files

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