Skip to content
Novus Examples

AI / ML

The AI category ships the file shapes machine-learning pipelines actually pass around — real formats with documented schemas, all fully synthetic. The NLP set is JSON Lines training data: labelled sentiment, token-level NER with BIO tags, chat fine-tuning in both the OpenAI and Anthropic message shapes (linked as a conversion twin), Alpaca-style instruction tuning, extractive QA in the SQuAD v2 structure with an unanswerable question, abstractive summarization, and an English–Spanish parallel corpus. The embeddings set carries the same 24 texts as an L2-normalised 16-dimensional vector set in three twinned encodings — JSON, Apache Parquet, and a raw NumPy .npy matrix — for testing vector stores and loaders. The vision set renders one detection scene and annotates it three ways — COCO JSON, YOLO text, and Pascal-VOC XML — so you can diff annotation converters against a known image. The evaluation set has benchmark results, a confusion matrix as CSV and JSON twins, an ROC curve, and a scikit-learn-style classification report; there's a templated prompt library, and a genuinely-valid tiny safetensors weight file (sample values, not a trained model). Every dataset uses fixed seeds and invented names, companies, and places — no real people or data.

Filter ai / ml on Browse · 124 files · 10 subcategories

124 of 124 files

Embeddings

Preview of Text Embeddings — 16-dim (JSON)
json
13.5 KB
Actual file preview for Text Embeddings — 16-dim (JSON)

Text Embeddings — 16-dim (JSON)

A set of 24 L2-normalised 16-dimensional text embeddings as JSON — each record pairs an id and its source text with a float vector. A fixture for testing vector stores, similarity search, and embedding loaders. Parquet and .npy twins included.

File
JSON · Embeddings · 24 records
Use case
ML training dataEmbeddings+2· Conversion set
Preview of Text Embeddings — 16-dim (Parquet)
parquet
9.3 KB
Actual file preview for Text Embeddings — 16-dim (Parquet)

Text Embeddings — 16-dim (Parquet)

The same 16-dimensional embeddings as Apache Parquet — id and text columns plus one column per dimension. The columnar twin, for testing analytics engines and Parquet-based vector pipelines.

File
PARQUET · Embeddings · 24 rows
Use case
ML training dataEmbeddings+2· Conversion set
Preview of Text Embeddings — 24×16 matrix (NumPy .npy)
npy
1.6 KB
Actual file preview for Text Embeddings — 24×16 matrix (NumPy .npy)

Text Embeddings — 24×16 matrix (NumPy .npy)

The embeddings as a raw NumPy array — a 24×16 float32 matrix in .npy format, loadable with numpy.load. The binary twin of the JSON and Parquet files, for testing tensor and matrix loaders.

File
NPY · Embeddings
Use case
ML training dataEmbeddings+1· Conversion set

Eval

Preview of Classification Report (JSON)
json
588 B
Actual file preview for Classification Report (JSON)

Classification Report (JSON)

A per-class classification report in the scikit-learn structure — precision, recall, F1, and support for each class plus accuracy and macro/weighted averages. A fixture for testing metric parsers and report renderers.

File
JSON · Eval
Preview of Confusion Matrix — 3-class (CSV)
csv
64 B
Actual file preview for Confusion Matrix — 3-class (CSV)

Confusion Matrix — 3-class (CSV)

A 3-class confusion matrix as CSV — rows are the true class, columns the predicted class, cells the counts. Paired with a JSON twin for testing metric parsers and evaluation visualisers.

File
CSV · Eval
Use case
Model evaluationCSV parsing+1· Paired fixture
Preview of Confusion Matrix — 3-class (JSON)
json
264 B
Actual file preview for Confusion Matrix — 3-class (JSON)

Confusion Matrix — 3-class (JSON)

The same 3-class confusion matrix as JSON — a labels array plus a nested counts matrix. The structured twin of the CSV, for testing evaluation tooling.

File
JSON · Eval
Use case
Model evaluationJSON parsing+1· Paired fixture
Preview of Model Benchmark Results (JSON)
json
663 B
Actual file preview for Model Benchmark Results (JSON)

Model Benchmark Results (JSON)

A model-evaluation summary in JSON — per-task scores for a fictional model across sentiment, NER, summarization, translation, and QA, each with its metric and sample size. A fixture for testing eval dashboards and leaderboard importers.

File
JSON · Eval
Preview of ROC Curve Points (CSV)
csv
179 B
Actual file preview for ROC Curve Points (CSV)

ROC Curve Points (CSV)

An ROC curve as CSV — decision threshold with the corresponding false-positive and true-positive rates, monotonic from (0,0) to (1,1). A fixture for testing chart tools and AUC calculators.

File
CSV · Eval

Model Inference

Preview of ONNX Inference Contract - Static Identity Model
onnx
260 B
Actual file preview for ONNX Inference Contract - Static Identity Model

ONNX Inference Contract - Static Identity Model

A one-node identity graph with a fixed 1x4 float tensor, useful as the smallest loader and inference smoke test. The matching JSON input and expected output make the model immediately usable in a CI inference assertion.

File
ONNX · Model Inference
Use case
Model inference testingModel evaluation+1· Conversion set

Nlp

Preview of Chat Fine-tuning Dataset — Anthropic Format (JSONL)
jsonl
2.5 KB
Actual file preview for Chat Fine-tuning Dataset — Anthropic Format (JSONL)

Chat Fine-tuning Dataset — Anthropic Format (JSONL)

The same synthetic conversations in the Anthropic Messages JSONL shape — a top-level system prompt plus a messages array of user and assistant turns. The format twin of the OpenAI file, for testing chat-format conversion.

File
JSONL · Nlp
Use case
ML training dataNLP datasets+1· Conversion set
Preview of Chat Fine-tuning Dataset — OpenAI Format (JSONL)
jsonl
2.7 KB
Actual file preview for Chat Fine-tuning Dataset — OpenAI Format (JSONL)

Chat Fine-tuning Dataset — OpenAI Format (JSONL)

A chat fine-tuning dataset in the OpenAI JSONL format — one conversation per line as a messages array with system, user, and assistant turns. Synthetic Q&A content. Paired with an Anthropic-format twin for testing format converters.

File
JSONL · Nlp
Use case
ML training dataNLP datasets+1· Conversion set
Preview of Extractive QA Dataset — SQuAD v2 Format (JSON)
json
2.2 KB
Actual file preview for Extractive QA Dataset — SQuAD v2 Format (JSON)

Extractive QA Dataset — SQuAD v2 Format (JSON)

An extractive question-answering dataset in the SQuAD v2.0 JSON structure — titled articles with context paragraphs, questions, character-offset answers, and one deliberately unanswerable question. Synthetic content; a fixture for QA model training and SQuAD-format loaders.

File
JSON · Nlp
Preview of Instruction-tuning Dataset — Alpaca Format (JSONL)
jsonl
2.1 KB
Actual file preview for Instruction-tuning Dataset — Alpaca Format (JSONL)

Instruction-tuning Dataset — Alpaca Format (JSONL)

An instruction-tuning dataset in the Alpaca JSONL format — 20 instruction / input / output triples covering small transformations, extraction, and factual answers. Fully synthetic; a fixture for supervised fine-tuning pipelines.

File
JSONL · Nlp · 20 records
Preview of Named-Entity Recognition Dataset — BIO Tags (JSONL)
jsonl
2.5 KB
Actual file preview for Named-Entity Recognition Dataset — BIO Tags (JSONL)

Named-Entity Recognition Dataset — BIO Tags (JSONL)

A token-classification dataset in JSON Lines — 16 tokenized sentences with aligned BIO tags for person, organisation, and location entities. All names, companies, and places are fictional. A fixture for NER model training and sequence-labelling tooling.

File
JSONL · Nlp · 16 records
Preview of Parallel Translation Corpus — EN↔ES (JSONL)
jsonl
1.3 KB
Actual file preview for Parallel Translation Corpus — EN↔ES (JSONL)

Parallel Translation Corpus — EN↔ES (JSONL)

An English↔Spanish parallel corpus in JSON Lines — 20 aligned sentence pairs of everyday phrases. A fixture for training and evaluating machine-translation models and for testing UTF-8 handling of accented characters.

File
JSONL · Nlp
Preview of Sentiment Classification Dataset (JSONL)
jsonl
1.9 KB
Actual file preview for Sentiment Classification Dataset (JSONL)

Sentiment Classification Dataset (JSONL)

A labelled sentiment-classification dataset in JSON Lines — 24 short product-review-style sentences balanced across positive, negative, and neutral. Fully synthetic; a fixture for testing text-classification loaders, tokenizers, and JSONL parsers.

File
JSONL · Nlp · 24 records
Preview of Summarization Dataset (JSONL)
jsonl
5.1 KB
Actual file preview for Summarization Dataset (JSONL)

Summarization Dataset (JSONL)

An abstractive-summarization dataset in JSON Lines — 15 short synthetic news-style documents each paired with a one-sentence summary. A fixture for training and evaluating summarization models and for testing JSONL ingestion.

File
JSONL · Nlp · 15 records

Prompts

Preview of Prompt Library (JSONL)
jsonl
3 KB
Actual file preview for Prompt Library (JSONL)

Prompt Library (JSONL)

A reusable prompt library in JSON Lines — 20 templated prompts for summarization, translation, extraction, code, and more, each with a task label, tags, and {curly-brace} placeholders. A fixture for prompt-management tools and JSONL parsers.

File
JSONL · Prompts

Rag

Ranking

Speech

Preview of ASR Digit Utterances Dataset (JSONL)
jsonl
764 B
Actual file preview for ASR Digit Utterances Dataset (JSONL)

ASR Digit Utterances Dataset (JSONL)

JSON Lines ASR training/eval set for the Wave B synthetic digit utterances — each row points at a clean WAV and carries the expected transcript.

File
JSONL · Speech · 8 records

Vision

Preview of Detection Annotations — COCO (JSON)
json
1 KB
Actual file preview for Detection Annotations — COCO (JSON)

Detection Annotations — COCO (JSON)

Object-detection annotations for the scene in the COCO JSON format — images, categories, and per-object bounding boxes as [x, y, width, height]. Grouped with YOLO and Pascal-VOC twins for testing annotation-format conversion.

File
JSON · Vision
Use case
Computer visionML training data+2· Conversion set
Preview of Detection Annotations — Pascal VOC (XML)
xml
1 KB
Actual file preview for Detection Annotations — Pascal VOC (XML)

Detection Annotations — Pascal VOC (XML)

The same detection boxes in the Pascal VOC XML format — a per-image annotation with size, and one object element per box with pixel corner coordinates. The XML twin of the COCO and YOLO annotations.

File
XML · Vision
Use case
Computer visionML training data+1· Conversion set
Preview of Detection Annotations — YOLO (TXT)
txt
117 B
Actual file preview for Detection Annotations — YOLO (TXT)

Detection Annotations — YOLO (TXT)

The same detection boxes in the YOLO text format — one object per line as class id and box centre, width, and height normalised to 0–1. The format twin of the COCO and VOC annotations.

File
TXT · Vision
Use case
Computer visionML training data+1· Conversion set
Preview of Detection Class List (TXT)
txt
19 B
Actual file preview for Detection Class List (TXT)

Detection Class List (TXT)

The class-name list for the detection scene, one label per line — index equals the zero-based line number, matching the YOLO class ids. A companion to the COCO/YOLO/VOC annotation files.

File
TXT · Vision
Preview of Object-detection Scene (PNG, 640×480)
png
2.9 KB
Actual file preview for Object-detection Scene (PNG, 640×480)

Object-detection Scene (PNG, 640×480)

A simple rendered street scene with a person, a car, and a tree at known pixel coordinates — the image the COCO, YOLO, and Pascal-VOC annotation twins describe. A fixture for testing object-detection loaders and annotation converters.

File
PNG · Vision · 640 × 480 px

Weights

Preview of Tiny Model Weights (safetensors)
safetensors
365 B
Actual file preview for Tiny Model Weights (safetensors)

Tiny Model Weights (safetensors)

A genuinely-valid safetensors file with two small float32 tensors (36 parameters total) — an 8×4 weight and a length-4 bias. The values are meaningless sample data, not a trained model; a fixture for testing safetensors loaders and weight inspectors.

File
SAFETENSORS · Weights

Frequently asked questions

What ML dataset shapes are included?

ASR JSONL, caption/VQA JSONL, mini RAG corpus + queries, semantic-segmentation scene/mask pairs, NER spans, chat prompt turns, plus detection/ranking/tool-calling JSONL and tiny eval packs in later waves.

Is this training data for production models?

These are tiny deterministic fixtures for loaders and eval harnesses — not large-scale training corpora.

How do I test LLM tool-calling parsers?

Filter Browse by purpose tool-calling for function-call JSONL shapes. Treat them as synthetic SAMPLE payloads for schema and harness tests only.