Glossary & Index
Definitions of every term used in the paper that may be unfamiliar to readers from a policy or creator-economy background, plus an index of every named person and organization referenced, with the most useful public links and contact details for each.
Glossary of terms
- AIISP / AIISP-2
- The Artificial Intelligence Inference Standards Protocol, the open HTTP-compatible inference and settlement standard proposed in the paper. AIISP-2 is the second version, introduced in the V2 paper, which adds model-category routing, per-request energy accounting, and on-chain settlement that mints HDCT for qualifying work events. The reference implementation is published at github.com/97115104/aiisp-spec ↗
- Category model
- A language model trained on a curated, domain-specific dataset rather than a broad web crawl. Category models (also called category-specific models) target bounded domains such as software development, creative writing, legal aid, or education. HDC V2 proposes a constellation of such models that can be routed to by AIISP-2 based on the request's declared category. Smaller category models can serve many tasks at lower latency and energy cost than large generalist models, escalating to larger systems only when the request requires it.
- DPO / Direct Preference Optimization
- A training technique that improves a language model by presenting it with pairs of responses, one preferred and one rejected, and updating the model's weights to favor the preferred output, without running a full reinforcement-learning loop. In HDC's V2 architecture, DPO pairs are a contribution class: contributors who supply accepted preference pairs earn HDCT. This is an alternative to RLHF that is simpler to implement and audit.
- Distributed inference
- Serving language model requests across many machines or accelerators, namely GPUs, data-center accelerators, or edge devices, and not a single private cluster. AIISP-2 routing selects the inference node best positioned to answer each request by category and energy benchmark. Distributed inference allows the Collective to scale horizontally as new contributor hardware joins the network, and avoids the extreme capital cost of maintaining a single large inference cluster.
- Genesis mint
- The initial one-time issuance of HDCT at network launch. HDC V2 sets the genesis mint at 1,000,000 HDCT, allocated 40 % to initial capital formation, 30 % to hardware and early contributor incentives, and 30 % to operating reserves. Subsequent HDCT enters circulation only through accepted work events (data contributions, served inference, accepted DPO pairs).
- HDCT
- The Human Data Collective Token, an ERC-20 token deployed on the Base network that is minted when accepted work enters the HDC network. HDCT is issued for three event types: an accepted data contribution, a verified inference request served by a contributor node, and an accepted DPO feedback pair. HDCT is best understood as an ownership-adjacent speculative instrument: it gives holders economic exposure to future network value and, when distributable surplus exists, is eligible for quarterly dividend distributions.
- Inference node
- A machine or cluster of accelerators contributed to the HDC network to serve model requests. Node operators earn HDCT for each verified inference request their hardware completes. The AIISP-2 routing layer selects nodes based on declared model category, energy benchmark, and current load. An inference node is conceptually similar to a Bitcoin miner, in that it contributes verified compute and is rewarded from the network's public accounting surface.
- Model collapse
- A quality-degradation dynamic that occurs when a model is trained predominantly on outputs from prior models rather than human-authored data. Because each generation of synthetic data smooths and narrows the original distribution, rare concepts, minority dialects, and factual edge cases gradually disappear from the training signal, producing systems that are more confident but less accurate. HDC's public contribution record is designed to make synthetic content traceable, so the network can measure and limit its share of the training pipeline.
- PoAIC (Proof of AI Contribution)
- A proposed future mechanism in which contributors lock earned HDCT as a verifiable stake corresponding to a specific contribution type, namely Proof of Data Contribution, Proof of Feedback, or Proof of Inference. PoAIC would create quality bonds that give the network a signal for weighting contribution records and could provide contributors additional revenue streams or governance rights. V2 leaves the mechanism undecided pending clearer utility and to avoid adding complexity before the network has real usage.
- Scaling laws
- Empirical relationships that show model quality (measured by loss on held-out text) is strongly predictable from the volume of training data, the number of model parameters, and the amount of compute used. Established by Kaplan et al. (2020), scaling laws are the theoretical basis for the frontier race to larger models and larger datasets, and underpin HDC's argument that both data quality and compute efficiency matter as much as raw scale.
- Settlement contract
- The on-chain smart contract in HDC's V2 architecture that receives batched records from the AIISP-2 routing layer after inference events are verified. The settlement contract records each batch on the public ledger, mints HDCT to contributor wallets, and routes the environmental line to carbon and water remediation funds. It is the single public accounting surface that makes HDC's contribution claims auditable end-to-end.
- Attestation
- A signed, time-stamped statement by an identifiable party that a specific piece of content was produced by them in a specific role at a specific moment. Used as the primitive that binds compensation and authorship to a given data contribution.
- Base
- An Ethereum Layer 2 network maintained by Coinbase that provides low-cost, high-throughput settlement while inheriting the security properties of the underlying Ethereum main chain. Selected as the settlement venue for AIISP contracts. base.org ↗
- Blockchain
- A distributed database in which records are grouped into cryptographically linked blocks and validated by a network of independent participants, providing data structure underneath a public ledger.
- ERC-20
- The Ethereum Request for Comment number 20, the canonical token standard on Ethereum and its Layer 2 networks. Defines the minimum interface (transfer, balance, approval) that any fungible token contract must implement so that wallets, exchanges, and settlement contracts can interact with it without bespoke integration. Used as the contract type each frontier provider mints to identify itself on Base.
- GPU
- Graphics Processing Unit, originally a co-processor for rendering graphics and now the dominant hardware for training and serving large neural networks. 5090-class GPU refers to the 2025-generation NVIDIA RTX 5090 consumer card and equivalents.
- Hallucination
- Output from a language model that is fluent and internally plausible but factually incorrect or unverifiable against any external source, including fabricated citations, events, statistics, and quotations. A property of the generation process, not a deliberate act by the model.
- HDC
- The Human Data Collective, the decentralized network of human creators, peer reviewers, and on-chain settlement contracts proposed in the paper as the reference implementation of AIISP. humandatacollective.org ↗
- Model weights
- The learned numerical parameters of a neural network, typically a large matrix of floating-point numbers on the order of hundreds of billions of entries for a frontier language model, which together encode what the model has learned from its training data and which are the artifact that is copied, served, and in proprietary systems withheld from external inspection.
- Public ledger
- An append-only record of transactions maintained by a blockchain network and readable by anyone, in which each state change is cryptographically linked to those before it so that the history cannot be quietly rewritten and every inflow, outflow, and retirement event is independently auditable.
- RLHF
- Reinforcement Learning from Human Feedback, the post-training technique in which a base language model is fine-tuned against a reward model trained on human preference rankings of its outputs. Introduced as the dominant alignment method for frontier consumer models, and used in the paper to refer to the broader supply chain of human raters whose labor that technique requires.
- Safe-harbor provision
- A clause in a statute or regulation that protects a party from liability if specified conditions are met. In the paper this means legal recognition that on-chain settlement against an audited registry constitutes valid and sufficient evidence of environmental remediation.
- Smart contract
- A small program deployed to a blockchain that executes automatically when its conditions are met and whose execution is recorded on the public ledger. Used in the paper to handle settlement, attribution, and credit retirement without a human intermediary.
- TPU
- Tensor Processing Unit, Google's custom-designed application-specific integrated circuit for accelerating machine-learning workloads, available to external developers through Google Cloud. The canonical example of a non-GPU accelerator at warehouse scale. cloud.google.com/tpu ↗
Named persons
- Sam Altman Co-founder and CEO of OpenAI. Cited for his May 2023 U.S. Senate testimony advocating an international oversight body for AI. blog.samaltman.com ↗ @sama ↗
- Leopold Aschenbrenner Former member of OpenAI's Superalignment team and author of Situational Awareness. Quoted in §Murky Data on the capability impact of RLHF. situational-awareness.ai ↗ @leopoldasch ↗
- Emily M. Bender Professor of linguistics at the University of Washington and co-author of Stochastic Parrots. faculty.washington.edu/ebender ↗ @emilymbender (Mastodon) ↗
- Timnit Gebru Founder and executive director of the Distributed AI Research Institute and co-author of Stochastic Parrots. dair-institute.org ↗ @timnitgebru (Bluesky) ↗ @timnitGebru ↗
- Karen Hao Author of Empire of AI: Dreams and Nightmares in Sam Altman's OpenAI; primary on-the-ground source for the environmental, labor, and corporate-history material in the paper. karendhao.com/empire ↗ LinkedIn ↗ Bluesky ↗ @_KarenHao ↗
- Demis Hassabis Co-founder and CEO of Google DeepMind; 2024 Nobel laureate in Chemistry (with John Jumper) for AlphaFold. Quoted in §Murky Data on data curation as the field's emerging bottleneck. deepmind.google ↗ @demishassabis ↗
- Austin Harshberger Author of this paper, founder of Happy Stack Calculus, and editor of the AIISP-2 specification. links.97115104.com ↗ blog.97115104.com ↗ [email protected]
- Jared Kaplan Co-founder and chief science officer of Anthropic; lead author of the foundational scaling-laws paper for neural language models. Quoted in §Murky Data. LinkedIn ↗
- Jaron Lanier Computer scientist, author, and Microsoft Research interdisciplinary scientist; co-author with E. Glen Weyl of the data-dignity argument cited in Appendix A. jaronlanier.com ↗
- Gavin Leech Co-author with Dwarkesh Patel of The Scaling Era. Google Scholar ↗
- Adam Tauman Kalai Researcher at Microsoft Research and lead author of the 2025 paper "Why Language Models Hallucinate," which provides a formal statistical argument that standard training objectives can reward confident guessing. Cited in V2 §Murky Data. Paper on arXiv ↗
- Angelina McMillan-Major Computational linguist and co-author of Stochastic Parrots. Google Scholar ↗
- Margaret Mitchell Computer scientist and co-author of Stochastic Parrots (writing as Shmargaret Shmitchell at the time of original publication); chief ethics scientist at Hugging Face. m-mitchell.com ↗ @mmitchell_ai ↗
- Dwarkesh Patel Independent technology podcaster whose long-form interviews with leading AI researchers form the basis of The Scaling Era. dwarkesh.com ↗ @dwarkesh_sp ↗
- Sonia Ramos Lickanantay water defender from the Atacama region of northern Chile. Her IIED interview on territorial injustice in lithium and data-center expansion is the source of the quotation in §Environmental and Social Costs. IIED interview ↗
- Tania Rodríguez Organizer with MOSACAT in Cerrillos, Chile; credited in Karen Hao's Empire of AI for leading the community campaign that obtained Google's environmental filing for the proposed Cerrillos data center. Instagram ↗
- Trebor Scholz Founder of the Platform Cooperativism Consortium at The New School and author of Platform Cooperativism. platform.coop ↗ The New School ↗
- Nathan Schneider Associate professor of media studies at the University of Colorado Boulder and author of Everything for Everyone. nathanschneider.info ↗ @ntnsndr ↗
- Ilia Shumailov Researcher whose 2024 Nature paper on model collapse under recursive training on synthetic data is cited throughout. iliaishacked.github.io ↗
- Emma Strubell Assistant professor at Carnegie Mellon University whose 2019 ACL paper on the energy and policy implications of deep learning in NLP is cited in §Environmental and Social Costs. strubell.github.io ↗ @strubell ↗
- E. Glen Weyl Founder of RadicalxChange and researcher at Microsoft Research; co-author with Jaron Lanier of the data-dignity argument cited in Appendix A. glenweyl.com ↗
Named organizations
- Aave Decentralized lending protocol and the operator of the Safety Module and Umbrella staking designs. Referenced in V2 Appendix A as the closest external analogy for a PoAIC staking mechanism where contributors lock assets and accept protocol risk in exchange for rewards. aave.com ↗
- Alphabet / Google Parent company of Google, Google DeepMind, and Google Cloud. Cited in §Brief on LLMs as one of the largest training-data holders and in §Environmental and Social Costs for the Cerrillos data-center proposal. abc.xyz ↗ google.com ↗
- Anthropic Frontier AI laboratory and developer of the Claude family of models, organized as a public benefit corporation. anthropic.com ↗ @AnthropicAI ↗
- Appen Australian-headquartered data-annotation and RLHF vendor; cited in §Murky Data and §For the Artificial Intelligence Industry. appen.com ↗
- Audius Decentralized music-streaming protocol cited in Appendix A as a precedent for on-chain creator-share contracts. audius.co ↗
- Base Ethereum Layer 2 network maintained by Coinbase; the proposed settlement venue for AIISP-2. base.org ↗ @base ↗
- Apple Technology company whose OpenELM research (Mehta et al., 2024) demonstrates that carefully designed small language models can outperform comparable open baselines while using fewer pre-training tokens. Also cited in V2 for the "Illusion of Thinking" paper (Shojaee et al., 2025), which cautions that larger inference budgets do not automatically yield reliable compositional reasoning. Both findings support HDC's constellation-of-specialists architecture. OpenELM paper ↗
- BentoML Open-source ML serving framework whose distributed inference work (2025) distinguishes the global routing problem across regions and providers from the local serving problem inside a single cluster. Referenced in V2 §Distributed Inference as a technical precedent for the primitives HDC plans to adapt for contributor-operated hardware. bentoml.com ↗
- Bonneville Environmental Foundation U.S. non-profit and the issuer of Water Restoration Certificates referenced throughout §Proposed Solution. b-e-f.org ↗
- Coalition for Content Provenance and Authenticity (C2PA) Standards body whose technical specification underpins the attestation primitive used in this paper. c2pa.org ↗
- Coinbase U.S. cryptocurrency exchange and the maintainer of the Base Layer 2 network. coinbase.com ↗ @coinbase ↗
- Distributed AI Research Institute (DAIR) Independent research institute founded by Timnit Gebru, cited in §For Contributors. dair-institute.org ↗
- Fairwork Oxford Internet Institute project that benchmarks platform working conditions against five fair-work principles. Referenced in §For Contributors. fair.work ↗
- GitHub Microsoft-owned source-code hosting platform and developer of GitHub Copilot. Cited throughout §Current Centralization and Pricing. github.com ↗
- Gold Standard Carbon-credit certification body referenced in §Proposed Solution as a permitted registry for HDC Carbon Fund retirements. goldstandard.org ↗
- Google DeepMind AI research subsidiary of Alphabet, cited in the Acknowledgements and §Murky Data. deepmind.google ↗
- Crunchbase Startup and venture-funding data platform. Cited in V2 §AI and Inference in 2026 for reporting approximately US$300 billion in global venture funding in Q1 2026, of which roughly US$242 billion flowed to AI companies. crunchbase.com ↗
- Greenlining Institute California-based racial-and-economic-equity policy organization named in Appendix A as a candidate co-sponsor for a California disclosure bill. greenlining.org ↗
- Happy Stack Calculus The author's company and the entity under which AIISP-2 is being developed. links.97115104.com ↗ [email protected]
- International Atomic Energy Agency (IAEA) UN agency cited in §Brief on LLMs as the model for proposed international AI oversight bodies. iaea.org ↗
- International Institute for Environment and Development (IIED) London-based policy research institute and publisher of the Sonia Ramos interview cited in §Environmental and Social Costs. iied.org ↗
- Meta Parent company of Facebook, Instagram, WhatsApp, and the Llama family of open-weight language models. about.meta.com ↗
- Microsoft Cloud and software vendor and principal investor in OpenAI; the developer, with GitHub, of GitHub Copilot. microsoft.com ↗
- MOSACAT Movimiento Socioambiental Comunitario por el Agua y el Territorio in Cerrillos, Chile; the community organization that successfully blocked the proposed Google data center. mosacatchile.cl ↗
- National Institute of Standards and Technology (NIST) U.S. federal agency named in Appendix C as the proposed publisher of reference per-region energy benchmarks. nist.gov ↗
- OpenAI Frontier AI laboratory and developer of the GPT family of models and ChatGPT. openai.com ↗
- Optimism Ethereum Layer 2 ecosystem and operator of the Retroactive Public Goods Funding rounds referenced in Appendix B. optimism.io ↗
- Penguin Publishing Group Publisher of Karen Hao's Empire of AI. penguin.com ↗
- Red Hat Open-source software company whose 2026 explainer on distributed inference describes model and data parallelism, prefill-decode disaggregation, prefix-aware routing, and failover across heterogeneous accelerators. Referenced in V2 §Distributed Inference as a technical account of the primitives HDC will adapt for its contributor network. redhat.com ↗
- Royal On-chain music-royalty platform cited in Appendix A as a precedent for fractional creator-share contracts. royal.io ↗
- S&P Global / Markit Financial-information provider whose registry is used as the system of record for Water Restoration Certificate retirements. spglobal.com ↗
- Sama Data-annotation vendor whose Kenyan content-moderation contract for OpenAI is the central case study in §Murky Data. sama.com ↗
- Scale AI U.S. data-annotation and RLHF vendor; cited in §Murky Data and §For the Artificial Intelligence Industry. scale.com ↗
- Stanford Institute for Human-Centered AI (HAI) Publisher of the annual AI Index Report cited in §Environmental and Social Costs. hai.stanford.edu ↗
- Stocksy United Photographer-owned stock-imagery cooperative referenced in Appendix A for its 75% creator share. stocksy.com ↗
- Stripe Press Publisher of Dwarkesh Patel and Gavin Leech's The Scaling Era. press.stripe.com ↗
- UCLA Institute for Technology, Law and Policy Academic policy center named in Appendix A as a candidate California co-sponsor. itlp.law.ucla.edu ↗
- Verra (Verified Carbon Standard) Carbon-credit certification body referenced in §Proposed Solution as a permitted registry for HDC Carbon Fund retirements. verra.org ↗
- The White House Issuer of Executive Order 14110, cited in §Brief on LLMs. whitehouse.gov ↗
- World Wide Web Consortium (W3C) Standards body that publishes the PROV-O provenance ontology referenced in Appendix A. w3.org ↗
- X (formerly Twitter) Social network owned by xAI and cited in §Brief on LLMs as one of the largest first-party training-data holders. x.com ↗
- xAI Frontier AI laboratory founded by Elon Musk and the operator of X. x.ai ↗
Spotted a missing person, organization, or term? Open an issue at github.com/97115104/aiisp-spec ↗ or email [email protected].