Dataset Viewer
Auto-converted to Parquet Duplicate
term
large_stringlengths
5
24
definition
large_stringlengths
39
85
democracy
Political system where citizens elect representatives to govern
libertarianism
Ideology prioritizing individual freedom and minimal state intervention
authoritarianism
System concentrating power in a leader or small group with limited political freedoms
anarchism
Philosophy rejecting all coercive hierarchies and advocating voluntary cooperation
theocracy
Government ruled by religious authority or divine law
technocracy
System governed by technical experts based on specialized knowledge
republic
State where power is held by elected representatives and a constitution
monarchy
System with a hereditary head of state, ranging from absolute to ceremonial
oligarchy
Rule by a small, privileged elite group
capitalism
Economic system based on private ownership and free market competition
socialism
System advocating collective or state ownership of production and distribution
communism
Classless system with common ownership of the means of production
mixed economy
Blend of private markets and government intervention
market anarchism
Stateless economy based on voluntary exchange and free markets
fascism
Authoritarian ultranationalism with centralized autocratic economic control
collectivism
Prioritizes group welfare and shared goals over individual interests
individualism
Centers moral and political concern on the rights and autonomy of the individual
communitarianism
Balances individual rights with responsibilities to the broader community
cosmopolitanism
Treats all humanity as belonging to a single moral community
egalitarianism
Advocates equal treatment and opportunity for all people
meritocracy
Structures society so that status and rewards reflect individual talent and effort
traditionalism
Preserves established social institutions, customs, and hierarchies
progressivism
Advocates reform and social change toward greater equality and justice
multiculturalism
Values coexistence and equal respect for diverse cultural identities
nationalism
Prioritizes the interests and identity of a particular nation or people
globalism
Emphasizes international cooperation and interdependence over national borders
retributive justice
Wrongdoers deserve punishment proportional to their offense
restorative justice
Focuses on repairing harm through reconciliation between offender and victim
distributive justice
Fair allocation of resources, burdens, and benefits across society
procedural justice
Fairness in the processes and rules used to reach outcomes
transformative justice
Addresses root causes of harm by changing underlying social conditions
centralism
Concentrates governmental authority in a central power
federalism
Divides power between a central government and regional units
decentralization
Disperses power and decision-making to local levels
direct democracy
Citizens vote on laws and policies directly without intermediaries
representative democracy
Citizens elect delegates to make decisions on their behalf
class
Political identity grounded in economic position within a social hierarchy
nation
Political identity rooted in shared national history, culture, or territory
race/ethnicity
Political identity based on shared racial or ethnic heritage
gender
Political identity organized around gender experience and relations
religion
Political identity centered on shared faith or religious community
universal humanity
Political identity grounded in shared membership in the human species
culture
Political identity based on shared language, customs, and cultural practices
consequentialism
Moral rightness determined solely by outcomes and overall welfare
virtue ethics
Morality grounded in cultivating good character and human flourishing
contractarianism
Moral rules derived from principles rational agents would agree to
divine command theory
Actions are moral because they are commanded by God
moral relativism
Moral truths are not universal but vary by culture or individual
natural law
Morality grounded in universal principles inherent in human nature or reason
empiricism
Knowledge derives from sensory experience and observable evidence
rationalism
Knowledge derives primarily from reason and innate ideas
pragmatism
Truth and meaning are determined by practical consequences and usefulness
postmodernism
Skeptical of universal truths; knowledge is shaped by power and context
scientific consensus
Truth established through peer-reviewed, reproducible empirical inquiry
religious revelation
Truth disclosed through scripture, prophecy, or divine communication
tradition
Knowledge validated by accumulated wisdom passed across generations

Axiom Dataset

Full output of the Axiom pipeline: pairwise cosine similarity scores, axis projection sentiment scores and value system preference rankings for 162 terms across 17 sentence-transformer models grouped by geographic/institutional origin (East, West, Academia), plus the reference splits needed to reproduce or extend the pipeline.

For findings, methodology, and context see the collection page, GitHub repo, essay or paper.


Measurement splits

term_pairs (15,552 rows)

Raw pairwise cosine similarity between every (term, judgment_pole) pair for every model. The base layer; everything else is derived from this.

Column Type Description
a_term str Source term
b_term str Target / judgment pole word
score f64 Raw cosine similarity
score_z f64 Z-score normalized within model×axis
score_norm f64 Min-max normalized within model×axis (0–1)
a_category str Term category (neutral_control, value_laden, political_economic)
b_category str Judgment axis name
model_id str HF model identifier

term_sentiment (12,474 rows)

Axis projection scores: score_axis = cos(term, positive_pole) − cos(term, negative_pole). Includes per model scores and cross-model averages aggregated by group and grand mean.

Column Type Description
a_term str Term being evaluated
a_category str Term category
b_category str Judgment axis
positive_term str Positive pole (e.g. good, feasible)
negative_term str Negative pole (e.g. evil, unfeasible)
score_axis f64 Axis projection score
model_id str HF model ID, or composite label for group averages
group str East, West, Academia, or aggregate

value_systems (627 rows)

Preference rankings for nine value system queries (government, economy, justice, etc.) per model and group composite. Scored by direct cosine similarity between query and option embeddings, min-max normalized per query. Not sentiment, rather preference ordering.

Column Type Description
model_id str HF model ID or composite
model_group str East, West, or Academia
grouping str Value-system category (e.g. economy, justice)
query str Natural-language query
option str Candidate concept
rank i64 Rank within query×model (1 = most similar)
score f64 Raw cosine similarity
score_norm f64 Min-max normalized score

Reference splits

terms

The full term vocabulary: 53 political/economic terms, 46 value-laden terms, 63 neutral control terms.

Column Type Description
category str Term category
term str Term string
short_definition str One-line definition
antonym str Semantic opposite

models

All 17 evaluated models.

Column Type Description
group str East, West, or Academia
model_name str Display name
model_url str HF model page
type str Model type
license str License identifier

enabled_models

Subset of models active in the current pipeline run.

definitions

Full definitions for every concept measured.

Column Type Description
term str Concept name
definition str Full definition

value_systems_meta

Query strings and option lists for each value system category, exploded to one row per option.

Column Type Description
key str Category key (e.g. economy, justice)
category str Broad category label
query str Natural-language query used for similarity scoring
option str Candidate concept

judgement_axes

The six semantic axes. Each defined by a positive and negative pole word; axis vector = embed(positive) − embed(negative). Pairwise Pearson correlations across axes range from r=0.07 to r=0.50 (mean ≈ 0.24).

Column Type Description
axis str Axis name (e.g. judgement_safety)
positive_term str Positive pole word
negative_term str Negative pole word

judgement_axes_correlation

Pairwise Pearson correlations across the six axes on the political/economic term set.

license_scores

Numeric openness score (0–1) per license type, used to weight models in composite group averages.

Column Type Description
license str License identifier
score f64 Openness score (1.0 = fully open, 0.0 = proprietary)

Loading

from datasets import load_dataset

# Main measurement splits
term_pairs    = load_dataset("matthewhaynesonline/axiom", "term_pairs")
term_sentiment = load_dataset("matthewhaynesonline/axiom", "term_sentiment")
value_systems  = load_dataset("matthewhaynesonline/axiom", "value_systems")

# Reference splits
terms          = load_dataset("matthewhaynesonline/axiom", "terms")
models         = load_dataset("matthewhaynesonline/axiom", "models")
Downloads last month
23

Collection including matthewhaynesonline/axiom