AI Data Supply Chain

Types of AI Training Data Explained (With Examples)

14 min read · 2026-09-24
300Testimated usable tokens of human-generated public text for AI training
14.2Mhand-labeled images in ImageNet, sorted into 21,841 categories
~300tokens the Gemini API counts per second of video at default resolution
90%of enterprise-generated data is unstructured, per IDC's 2023 estimate
60%of AI/analytics development data Gartner projected would be synthetic by 2024
Key takeaways
  • 1AI training data splits along two independent axes: modality (text, image, audio, video, tabular/structured, or multimodal) and function (labeled vs. unlabeled, training/validation/test split, synthetic vs. real, structured vs. unstructured). A dataset's real type is the intersection of both, not a single label.
  • 2Text remains the cheapest, largest modality by far: Epoch AI estimates roughly 300 trillion usable tokens of human-generated public text exist for AI training, most of it needing no label at all for pretraining. {cite:epoch}
  • 3Labeling method drives cost more than volume within a single modality. ImageNet's 14.2 million images took years of human sorting into 21,841 categories, while LAION-5B reached 5.85 billion image-text pairs by using unverified web alt text instead. {cite:imagenet}{cite:laion5b}
  • 4Video is the most expensive modality per second of raw signal: Google's Gemini API counts roughly 300 tokens per second of video at default resolution, dozens of times the token cost of the same second of transcribed speech. {cite:gemini}
  • 5The functional axis matters as much as the modality one: about 90% of enterprise-generated data is unstructured per IDC, and Gartner projected 60% of AI and analytics development data would be synthetic by 2024, which means most real pipelines mix several types rather than relying on one. {cite:ibm-idc}{cite:gartner}
The short version

AI training data breaks down along two independent axes, not one list. The first axis is modality, what shape the data takes: text, image, audio, video, tabular/structured, or a multimodal combination of these, each with its own typical file formats, labeling method, and cost tier. The second axis is function: whether the data is labeled or unlabeled, which split it belongs to (training, validation, or test), whether it was generated by a real event or synthesized by a model, and whether it arrives with a schema or without one. A real dataset is always the intersection of both: a set of de-identified clinical notes is unstructured text data that is also real, labeled, and part of a training split. This guide walks through all six modalities with concrete examples, formats, labeling methods, cost tiers, and use cases, covers the four functional properties that apply across every modality, and closes with a full comparison table and a worked example showing how a real AI project combines several types at once.

On this page ▾

The two axes that organize every AI training dataset

Ask ten people to list the types of AI training data and you'll get ten different lists, because the phrase covers two separate questions. The first is a question about shape: is the data text, an image, a sound wave, a video, or a table of numbers? The second is a question about properties: does the data carry a label, which split does it belong to, did a person generate it or a machine, and does it arrive with a schema or without one? Every real dataset answers both questions at once. A set of de-identified clinical notes is unstructured text (modality) that is also real, labeled, and part of a training split (function). Treating training data as one undifferentiated list instead of two independent axes is why so many explainers of this topic read as a grab bag rather than a system. What is AI training data? covers the basic definition and the pretraining, fine-tuning, and evaluation split in full; this guide assumes that groundwork and focuses on mapping every type across both axes, with concrete examples, formats, labeling methods, and cost tiers for each.

  • The modality axis (what shape the data takes): text, image, audio, video, tabular/structured, or multimodal.
  • The function axis (what properties the data carries): labeled vs. unlabeled, training/validation/test split, synthetic vs. real, structured vs. unstructured.
Why both axes matter to buyers and sellers
A dataset listing that says 'text data' tells a buyer almost nothing on its own. 'Unstructured, human-generated, labeled support transcripts for a training split' tells them exactly what they're licensing. The function axis is usually where the price gets set; the modality axis is usually where the buyer's search starts.

Text data

Text is the modality every large language model still learns from first, and it remains the cheapest to collect relative to the raw information it carries.

  • What it looks like: web pages, books and articles, emails, chat and support transcripts, contracts and legal filings, clinical notes, source code, product reviews.
  • Typical formats: plain .txt, .jsonl or .csv exports, tokenized shards for pretraining, PDF and HTML that need extraction before use.
  • Typical labeling method: none for pretraining, since a model predicts the next token and needs no human-added label; classification tags, named-entity spans, or human-ranked preference pairs for fine-tuning and alignment.
  • Cost tier: low for raw, unlabeled web text; medium to high for domain-expert-labeled text such as legal issue-tagging or clinical coding.
  • Common use cases and industries: LLM pretraining and fine-tuning, chatbots and support automation, sentiment and intent classification, retrieval over internal documents. Publishing, customer support, legal, and software all sell or buy this modality heavily.

Scale illustrates the cost gradient. Epoch AI estimates the usable stock of human-generated public text at roughly 300 trillion tokens, with a wide confidence band, and projects that on current scaling trends models will fully use that stock between 2026 and 2032 [2], largely because raw web text costs almost nothing to collect and needs no label to pretrain on. FineWeb, one of the most widely used open pretraining corpora, holds more than 18.5 trillion cleaned, deduplicated tokens, up from roughly 15 trillion at its original release [4]. The moment text needs a human-added label, a resolution tag on a support ticket, a ranked preference pair, a redaction pass on a clinical note, the cost profile changes entirely, and it's driven by the functional properties covered later in this guide, not by the text modality itself.

Image data

  • What it looks like: product photos, medical scans (X-ray, MRI, CT), satellite and aerial imagery, security and dashcam stills, user-generated photos, document scans.
  • Typical formats: JPEG or PNG for general photography, TIFF or DICOM for medical imaging, image folders paired with COCO-style or YOLO-style JSON or XML annotation files.
  • Typical labeling method: classification tags, bounding boxes, segmentation masks, or loosely paired alt text and captions scraped from the web.
  • Cost tier: low for scraped, weakly captioned images; high for expert-annotated imagery such as radiology, where a licensed clinician has to review every label.
  • Common use cases and industries: computer vision and object detection, autonomous vehicles, retail visual search, medical diagnostics, agricultural and satellite monitoring.

The gap between careful and loose labeling shows up starkly in two of the field's reference datasets. ImageNet required human annotators to hand-sort 14,197,122 images into more than 21,841 WordNet categories, a labeling effort that took years and remains the reference point for supervised image classification [2]. LAION-5B, by contrast, reached 5.85 billion image-text pairs, several hundred times ImageNet's volume, by pairing images with whatever alt text a web author happened to write, never independently verified by a human reviewer [4]. Both are legitimate image data. They sit at opposite ends of the cost and quality spectrum, and a buyer evaluating an image dataset needs to know which end they're getting before comparing price per image.

Audio data

  • What it looks like: call center and customer support recordings, podcasts and interviews, voice assistant commands, meeting recordings, ambient and environmental sound, music.
  • Typical formats: WAV or FLAC for lossless capture, MP3 for compressed storage, paired transcripts in SRT/VTT or plain text with timestamps.
  • Typical labeling method: transcription, speaker diarization (who spoke when), intent or sentiment tagging, wake-word and command labeling.
  • Cost tier: medium to high; transcription can be automated with a speech-recognition model, but production-grade datasets still need human review for accuracy, accents, and overlapping speech.
  • Common use cases and industries: speech recognition and voice assistants, call center quality monitoring, accessibility captioning, multilingual transcription. Telecom, customer support, media, and healthcare are the heaviest buyers.

Common Voice, Mozilla's crowdsourced speech corpus, is a useful benchmark for what unlabeled-to-labeled audio actually costs to build at scale: its foundational release gathered roughly 2,500 hours of transcribed, crowd-validated speech, with 29 languages in its first public release and 38 languages in active collection as of the project's 2019 paper, built through volunteer recording and community validation rather than a paid annotation vendor [2]. That crowdsourced model works for general speech. It breaks down fast for anything domain-specific, since a volunteer without clinical or legal training can't reliably transcribe or tag a specialized call.

Video and multimodal data

Video is the modality where the economics of the first three break down. A model doesn't just see a sequence of images; it has to track objects across frames, and if the video is paired with sound, keep that audio aligned with what's happening on screen. Google's Gemini API illustrates the cost gap directly: it samples video at 1 frame per second and counts roughly 258 tokens per frame plus 32 tokens per second of audio, close to 300 tokens for every second of video at default resolution [2], far more than the roughly dozen tokens a second of transcribed speech costs as plain text. Video data also splits into distinct subtypes that aren't interchangeable: raw unlabeled footage, temporally captioned or tracked video, paired audio-video, robot and vehicle action or trajectory data, and synthetic 3D renders used to fill gaps real footage can't cover. What is video and multimodal AI training data? covers all five subtypes, the current model landscape, real licensing deals and how they ended, worked annotation cost math, and the biometric and likeness law that governs footage of identifiable people; this section only needs the summary.

  • What it looks like: security and operational camera footage, dashcam and autonomous-vehicle sensor logs, film and stock footage libraries, robot demonstration recordings, screen recordings paired with narration.
  • Typical formats: MP4 or MOV video containers, frame-extracted image sequences with tracking annotations, synchronized audio-video with time-aligned transcripts, telemetry logs aligned to camera timestamps.
  • Typical labeling method: frame-level bounding boxes or segmentation masks, temporal action boundaries, clip-level captions, audio-visual alignment checks; heavily model-assisted in production pipelines because pure manual annotation is too slow.
  • Cost tier: the highest of any modality; exhaustive frame-by-frame annotation can run into the thousands of dollars per hour of footage.
  • Common use cases and industries: video generation and world models, autonomous vehicles and robotics, security and operations monitoring, film and media production.

Multimodal isn't a separate file format so much as a claim about alignment. A dataset only counts as multimodal training data when two or more streams, text captions and images, or video and audio, are synchronized to each other with known precision. A folder of videos next to an unrelated folder of transcripts is two unimodal datasets, not one multimodal one, and the alignment work is exactly what makes genuine multimodal data more expensive than the sum of its individual streams.

Tabular and structured data

  • What it looks like: CRM and ERP transaction rows, insurance claims, banking and payments records, sensor and IoT telemetry, e-commerce catalog and order data, survey response grids.
  • Typical formats: relational database exports, CSV, Parquet, or direct warehouse tables with a fixed schema.
  • Typical labeling method: usually minimal; the target variable (fraud, churn, resolution status) often already exists as a column, so the main work is validation and cleaning rather than manual annotation.
  • Cost tier: the lowest of the six modalities in most cases, because the label is frequently already produced as a byproduct of normal business operations.
  • Common use cases and industries: fraud detection, demand forecasting, credit scoring, recommendation systems, churn prediction. Finance, insurance, e-commerce, and logistics are the primary buyers.

Structured tabular data trains differently than the other five modalities. Fraud detection is a clean illustration: a model scores a transaction against fields that already exist, amount, merchant category, device fingerprint, account age, and tree-based models such as XGBoost remain the standard choice specifically because they handle heterogeneous tabular features well without needing deep-learning-scale volume [2]. Structured vs. unstructured data for AI training covers the full comparison, including how much of the world's actual data is unstructured (the honest, IDC-sourced answer, not the recycled 80% myth) and why LLM pretraining leans one way while forecasting and fraud models lean the other; this section stays focused on tabular data as a modality in its own right.

Comparing all six modalities side by side

Put the six modalities next to each other and the pattern holds: cost tracks how much interpretation a human has to add before the raw signal becomes trainable, not how large the files are.

ModalityTypical formatTypical labeling methodCost tierCommon use case
Text.txt, .jsonl, .csv, tokenized shards, PDF/HTML needing extractionNone for pretraining (self-supervised); classification, entity tags, or ranked preference pairs for fine-tuningLow (raw) to high (expert-labeled)LLM pretraining and fine-tuning, chatbots, document classification
ImageJPEG/PNG, TIFF/DICOM, folders with COCO/YOLO-style annotation filesClassification tags, bounding boxes, segmentation masks, or scraped alt textLow (weakly captioned) to high (expert-reviewed medical imaging)Computer vision, autonomous vehicles, visual search, medical diagnostics
AudioWAV/FLAC/MP3 with SRT/VTT or timestamped transcriptsTranscription, speaker diarization, intent/sentiment taggingMedium to highSpeech recognition, voice assistants, call center QA, captioning
VideoMP4/MOV, frame sequences with tracking annotation, telemetry aligned to camera clocksFrame-level boxes/masks, temporal action boundaries, clip captions, audio-visual alignmentHighest of the sixVideo generation, autonomous vehicles, robotics, security
Tabular / structuredRelational exports, CSV, Parquet, warehouse tablesUsually minimal; target label often already exists as a columnLowest of the sixFraud detection, forecasting, credit scoring, recommendation
MultimodalTwo or more of the above, time-aligned to each otherAlignment verification plus whichever per-modality method applies to each streamMedium to highest, driven by the priciest component modalityText-to-video and text-to-image generation, embodied agents, video question answering

The second axis: four properties that describe any dataset, regardless of modality

Modality tells you the shape of the data. These four properties tell you what you can actually do with it, and they apply to text, image, audio, video, and tabular data alike.

Labeled vs. unlabeled

Labeled data pairs each example with the answer a model is meant to produce: an image tagged with its object class, a support ticket tagged with its resolution, a transaction row tagged as fraudulent or not. Unlabeled data is the raw example with no attached answer, and a model has to find structure in it on its own, typically by predicting a missing piece from the rest, the next word, a masked pixel, a missing audio frame. A special case worth naming on its own is preference-pair data: a prompt with a chosen and a rejected response, ranked by a human, the format that trains RLHF and DPO alignment. It's structurally different from ordinary labeled data because it records a comparative judgment rather than a fixed class, and it's scarce enough that our dedicated RLHF and preference data guide covers it on its own.

Training, validation, and test splits

Every dataset used to build a model gets carved into at least two, usually three, non-overlapping subsets. The training split is what the model actually learns from. The validation split is held out during training and used to tune settings and catch overfitting as it happens. The test split is held out entirely until the end, and its only job is to measure how the finished model performs on examples it has never seen. The boundary has to hold across every modality: a video test set with even a few frames of overlap with the training set, or a text validation set containing a near-duplicate of a training document, will inflate reported accuracy without improving the model at all.

Synthetic vs. real

Real data records something that actually happened: a genuine support conversation, a genuine clinical visit, a genuine transaction. Synthetic data is generated by an algorithm or another model to resemble that world without recording any specific real event. Synthetic data scales cheaply and fills gaps real data can't, rebalancing rare classes, protecting privacy, padding a thin dataset, but it's derivative by construction: it can only resample what a generator already learned, and training repeatedly on model-generated output causes measurable model collapse, where a model's outputs get blander and lose the tails of the true distribution generation after generation [2]. Gartner projected that 60% of the data used in AI and analytics development would be synthetic by 2024 [4], which makes the real-vs-synthetic distinction one of the highest-stakes calls a data strategy makes. Synthetic vs. real data for AI training: a decision guide works through exactly when each one is the right choice and how the two combine in a hybrid pipeline; that's the deep dive this section defers to.

Structured vs. unstructured

Structured data lives in fixed fields with a schema attached before anyone looks at a single record; tabular rows are the clearest example. Unstructured data, most text, images, audio, and video, carries no schema and generally needs a labeling or extraction step before a model can use it. IDC's often-cited 2023 estimate puts unstructured data at roughly 90% of enterprise-generated data [2], a materially different and better-sourced number than the vague 80% figure that circulates without attribution in most explainers of this topic. Structured vs. unstructured data for AI training is the full comparison, including where semi-structured formats like JSON and XML fit between the two; this section is the short version.

Worked example: mapping data types to a real AI project

A mid-size auto insurer is building an AI system to help adjusters process claims faster. The project needs four distinct data types at once, and naming each one on both axes is what determines the labeling budget, not the total row or file count.

  • 1Claim intake forms (tabular, structured, real, labeled). Policy number, claim amount, incident date, and a status field that already records whether the claim was approved, denied, or flagged for review. This data ships almost immediately; the target label already exists in the database, so the work is validation, not annotation.
  • 2Photos of vehicle damage (image, unstructured, real, partially labeled). Thousands of claim photos exist, but only a fraction carry a damage-severity tag. The team runs a bounding-box and severity-classification labeling pass on the rest before a computer-vision model can estimate repair cost from a photo, the highest-cost line item in the whole build.
  • 3Adjuster call recordings (audio, unstructured, real, unlabeled). Calls between adjusters and claimants exist as raw audio with no transcript. Before any of it is trainable, it needs transcription and speaker diarization, and calls involving a policyholder's name and location trigger the same consent obligations any personal data does.
  • 4Synthetic damage renders for rare claim types (image, unstructured, synthetic, labeled). Total-loss claims involving rare vehicle models are underrepresented in the real photo archive. The team generates synthetic damage renders for those specific cases to rebalance the training set, and validates every synthetic image against real adjuster judgment before it enters training, precisely because synthetic data can only resample patterns the generator already learned.
  • 5A held-out test split across the real modalities. Before training starts, the team sets aside a random 15% of claims, tabular rows, photos, and calls together, deduplicated against the training set, so the model's reported accuracy reflects genuine generalization rather than memorized overlap.
Data sourceModalityFunction propertiesLabeling cost tier
Claim intake formsTabular / structuredReal, labeled (target exists), training splitLow
Vehicle damage photosImageReal, partially labeled, training splitHigh
Adjuster call recordingsAudioReal, unlabeled until transcribed, training splitMedium to high
Synthetic rare-claim rendersImageSynthetic, labeled, training split (augmentation only)Low per image, bounded value
Held-out claim sampleMixed (tabular + image + audio)Real, labeled, test splitNot applicable, no training use

No single modality or property describes this project's data. That's the normal case, not the exception, and it's exactly why treating training data as one undifferentiated category leads teams to budget for the wrong thing.

Which type do you actually need?

Start with modality, because it determines the tooling and the team you need: a computer-vision labeling pipeline looks nothing like an audio transcription pipeline, which looks nothing like a tabular-data validation pass. Then apply the four functional properties, labeled or not, which split, synthetic or real, structured or unstructured, because those are what set the cost and the legal profile of the asset, independent of what the data looks like on the surface.

Most real AI products, like the insurance claims example above, need several modalities and a mix of functional properties at once, sourced, licensed, and cleaned on different timelines and at different price points. Knowing exactly which type you're looking at, on both axes, before you start pricing or budgeting is what separates a realistic data plan from a guess.

See these data types in the wild.

Every category in this guide, text, image, audio, video, tabular, and the labeled, synthetic, and structured variants of each, shows up as a real, vetted listing on Dayda. Browse live datasets to see what buyers are actually licensing right now.

Browse datasets on Dayda