How much Chinese state coordinated media appears in LLM training data?
Chinese state coordinated media appears extensively in Chinese-language web text used to train LLMs. Matching CulturaX against two state coordinated media corpora (state scripted articles and the CCP’s Xuexi Qiangguo app) via 5-word-gram cosine similarity, 1.64% of documents (3.1 million) pass the threshold. For documents referencing political leaders or institutions, rates climb far higher, peaking at 24% on CCP plenum keywords.
For context, 1.64% is approximately forty-one times the share of CulturaX coming from the Chinese Wikipedia domain, and sixteen times the share coming from Baidu (China’s closest equivalent to Wikipedia and Yahoo Answers; see the domain chart below).
We analyze CulturaX because it is open-source and fully reproducible. Commercial training corpora are not disclosed, so direct analysis of proprietary data is not possible.
NoteClick for methodological details
Matching procedure. Each Chinese-language document in CulturaX is segmented into words (using pkuseg) and then into 5-word grams. Cosine similarity is computed between each document’s 5-word-gram vector and 5-word-gram vectors from two state media corpora: (1) state scripted media articles identified by Waight, Yuan et al., and (2) articles from Xuexi Qiangguo (学习强国), an official CCP study app. A document is considered a match if its maximum cosine similarity to either corpus is ≥ 0.2.
Keyword filtering. Documents are tagged with binary keyword indicators (e.g., whether the text contains “习近平” for Xi Jinping). Match rates are computed separately for documents containing each keyword, revealing how match rates vary by topic.
CulturaX corpus. CulturaX aggregates five web-crawl sources: OSCAR-2019, OSCAR-2109, OSCAR-2201, OSCAR-2301, and mC4. Together they contain 189.5 million Chinese-language documents across 320 parquet files.
Match Rates by Keyword
The chart below shows what fraction of Chinese-language CulturaX documents matching each keyword also match state coordinated media. Politically sensitive keywords (leaders and institutions) have match rates far above the 1.64% baseline (dashed line).
Documents from government domains (gov.cn or chinacourt.org) make up 1.65% of the Chinese-language portion of CulturaX, a share roughly 41 times that of Chinese Wikipedia.
sortedBenchmarks = [...benchmarkData].sort((a, b) => b.rate- a.rate)benchmarkLabels = sortedBenchmarks.map(d => d.domain)Plot.plot({width:700,height:Math.max(220, benchmarkLabels.length*45+80),marginLeft:210,marginRight:20,x: {label:"% of CulturaX Chinese-language documents",domain: [0,Math.max(...benchmarkData.map(d => d.rate)) *1.15],tickFormat: d => (d *100).toFixed(1) +"%" },y: {label:null,domain: benchmarkLabels,padding:0.3},marks: [ Plot.ruleY(benchmarkLabels, {y: d => d,stroke:"#eee"}), Plot.dot(sortedBenchmarks, {x:"rate",y:"domain",fill: d => d.domain==="Chinese Wikipedia"?"#2ca02c":"#2d7bb7",stroke: d => d.domain==="Chinese Wikipedia"?"#2ca02c":"#2d7bb7",r:7,tip:true,title: d =>`${d.domain}: ${(d.rate*100).toFixed(4)}%\n${d.docs.toLocaleString()} docs\n${d.ratio_to_wiki.toFixed(1)}× Chinese Wikipedia` }), Plot.text(sortedBenchmarks.filter(d => d.domain==="Government (gov.cn or chinacourt.org)"), {x:"rate",y:"domain",text: d =>`41× Wikipedia`,dx:12,textAnchor:"start",fontSize:11,fill:"#666",fontStyle:"italic" }), Plot.ruleX([0]) ]})
TipNote on domain analysis
Domain-level statistics exclude OSCAR-2019 and OSCAR-2109, which lack reliable URL metadata. The remaining three sources (OSCAR-2201, OSCAR-2301, mC4) cover 141.1 million documents.
Training Data Sources
CulturaX combines five web-crawl datasets. Match rates vary across sources, with mC4 showing the highest match rate (2.1%).