The Density Imperative: Cognitive Nutrition Experiment
Fine-tuning data quality is signed. Sparse curation lobotomizes; dense curation teaches the model how to access and articulate its own pre-trained knowledge.
Papers
#
Title
Role
Status
1
The Entropy of Recursion
Theoretical foundation — defines PEST, PPP, NEST, Model Collapse, Context Blindness
Published
2
The Density Imperative
Empirical validation — the ablation study with live results
This experiment
3
Cognitive Nutrition: Architecture of a Provenance-Embedded Data Refinery
Systems/dataset paper — the factory that produces the cure
A controlled ablation study proving that fine-tuning data quality is not a scalar quantity but a signed intervention. We fine-tuned Llama 3.2 11B Vision-Instruct on 9,081 cultural heritage images under three conditions — holding images, architecture, and hyperparameters constant. The sole variable is metadata density.
Condition
Label
Tokens/Image
Description
Base
No fine-tuning
N/A
Llama 3.2 11B Vision-Instruct, unmodified
Group A
Sparse captions
~50–100
Title, creator, date, medium (simulates web-scraped alt-text)
Group B
Dense NEST
~2,000–4,000
111-field schema: composition, technique, cultural context, affect, symbolism, narrative
Results
The Three-Way Gradient
Metric
Base
Group A (Sparse)
Group B (Dense)
A vs Base
B vs Base
VULCA Overall
0.529
0.329
0.559
−37.8%
+5.6%
CogBench Overall
0.384
0.175
0.418
−54.4%
+8.9%
Semantic Coverage
0.099
0.028
0.257
−71.7%
+160.3%
Hallucination Rate
0.010
0.043
0.013
+330%
+33%
Counterfactual Rejection
0.933
0.455
0.765
−51.3%
−18.0%
Avg Tokens
160.7
37.9
136.0
−76.4%
−15.4%
CogBench Cognitive Depth (Track 4)
All 8 dimensions statistically significant: Friedman test, all p < .001, n = 100.
Dimension
Base
Group A
Group B
χ²
Overall
0.378
0.174
0.415
157.22
Narrative
0.280
0.175
0.413
151.21
Mental State
0.392
0.183
0.492
174.24
Focal Point
0.454
0.165
0.567
189.23
Atmosphere
0.227
0.162
0.309
82.99
Cultural Knowledge
0.412
0.192
0.378
130.03
Color Function
0.472
0.165
0.362
152.83
Causal Depth
0.407
0.178
0.388
136.22
Semantic Density Coverage
Field
Base
Group A
Group B
B vs Base
Composition
0.132
0.022
0.317
+140.5%
Color Harmony
0.130
0.015
0.341
+162.7%
Technique
0.104
0.021
0.221
+112.4%
Emotional
0.067
0.040
0.256
+282.1%
Symbolic
0.098
0.033
0.224
+128.9%
Narrative
0.062
0.034
0.183
+196.3%
Overall
0.099
0.028
0.257
+160.3%
GLMM Verbosity Control
Parameter
β
SE
z
p
Intercept
0.247
0.007
33.94
<.001
Group A (vs Base)
−0.106
0.006
−16.81
<.001
Group B (vs Base)
0.003
0.004
0.69
.488 (ns)
Token count
0.000075
0.000004
19.51
<.001
Key insight: Group A's destruction is real and independent of verbosity (β = −0.106, p < .001). Group B's advantage is mediated by the structured analytical patterns the model acquires — token count is a mediator, not a confounder.
Training Details
Group A (Sparse)
Records: 9,081
Steps: 1,135 (~1 epoch)
Final loss: 0.865
Training time: 34.9 hours
GPU: NVIDIA L4
Group B (Dense NEST)
Records: 9,081
Steps: 1,135 (~1 epoch)
Final loss: 1.164
Training time: 38.3 hours
GPU: NVIDIA L4
Shared Hyperparameters
Parameter
Value
Base model
unsloth/Llama-3.2-11B-Vision-Instruct
Quantization
4-bit (Unsloth)
LoRA rank
32
LoRA alpha
32
Target modules
q, k, v, o, gate, up, down
Vision encoder
Frozen (no gradient updates)
Effective batch size
8 (batch 1 × gradient accumulation 8)
Learning rate
2e-4
Optimizer
AdamW (8-bit)
Precision
bfloat16
Image resolution
560px max (1 vision tile)
Evaluation Framework
Four tracks, applied to 100 held-out images (909 reserve images available for community replication):
1from unsloth import FastVisionModel
2from peft import PeftModel
34# Load base model5model, tokenizer = FastVisionModel.from_pretrained(6"unsloth/Llama-3.2-11B-Vision-Instruct",7 load_in_4bit=True,8)910# Apply Group B (NEST-enriched) adapter11model = PeftModel.from_pretrained(12 model,13"Metavolve-Labs/cognitive-nutrition-experiment",14 subfolder="group_b_adapter"15)16FastVisionModel.for_inference(model)
Reproducing the Experiment
bash
1# 1. Get the dataset2pip install datasets
3from datasets import load_dataset
4ds = load_dataset("Metavolve-Labs/alexandria-aeternum-genesis")56# 2. Prepare training data (creates Group A sparse + Group B NEST splits)7python scripts/prepare_data.py --input alexandria_aeternum_full_v2.jsonl
89# 3. Train (requires NVIDIA L4/A100, 24GB+ VRAM)10pip install"unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"11python scripts/train_cn_experiment.py --group A
12python scripts/train_cn_experiment.py --group B
1314# 4. Evaluate15python scripts/evaluate_cn.py # Tracks 1-316python scripts/evaluate_track4.py # Track 4 (CogBench, counterfactual, semantic density)17python scripts/statistical_analysis.py # Statistical tests
The Key Insight
Dense structured training data teaches the model how to think about a domain, not merely what to say about specific examples. Group B produces superior analyses of images the model has never seen during training. The knowledge about art history, composition, and technique exists in both models' pre-trained weights. Only Group B has learned to access and organize that knowledge into structured analytical responses. This is not knowledge injection — it is cognitive scaffolding.
Citation
bibtex
1@article{macpherson2026density,
2 title={The Density Imperative: How Semantic Curation Depth Determines Vision-Language Model Capability},
3 author={MacPherson, Tad},
4 year={2026},
5 institution={Metavolve Labs, Inc.}
6}
78@article{macpherson2025entropy,
9 title={The Entropy of Recursion: A Strategic Framework for Provenance-Verified Data and the Preservation of Signal Integrity in Generative Systems},
10 author={MacPherson, Tad},
11 year={2025},
12 institution={Metavolve Labs, Inc.}
13}
1415@article{macpherson2026architecture,
16 title={Cognitive Nutrition: Architecture of a Provenance-Embedded Data Refinery},
17 author={MacPherson, Tad},
18 year={2026},
19 institution={Metavolve Labs, Inc.}
20}
Patent
U.S. Provisional Patent Application No. 63/983,304 — "Systems and Methods for Provenance-Embedded Semantic Transport, Multi-Agent Data Enrichment, and Perceptual Compute Offloading in Autonomous Systems"
License
Apache 2.0. The LoRA adapters, evaluation scripts, and results are freely available for research and commercial use. The underlying artworks are public domain (Met Museum Open Access).
Built by Metavolve Labs — Cognitive Nutrition for Foundation Models."The factory is open."