Fly Language Model (FLM) Wires the Full Fruit Fly Connectome Into a Frozen 1.2B LLM, and Its Own Controls Show the Wiring Does Not Help
FLM couples the complete MaleCNS v1.0 fruit fly connectome (166,700 nodes, 25.6M edges) to a frozen LiquidAI LFM2.5-1.2B-Instruct backbone via a minimal 278,528-parameter readout (~0.024% of backbone parameters) The fly-reservoir readout reduces NLL by 0.0222 nats/token vs. the frozen backbone alone, but a direct-input control without the graph outperforms it in all tested seeds The connectome's state contracts by at most 0.6 per token, proving it adds no long-range memory; context remains entir
Analysis
TL;DR
- FLM couples the complete MaleCNS v1.0 fruit fly connectome (166,700 nodes, 25.6M edges) to a frozen LiquidAI LFM2.5-1.2B-Instruct backbone via a minimal 278,528-parameter readout (~0.024% of backbone parameters)
- The fly-reservoir readout reduces NLL by 0.0222 nats/token vs. the frozen backbone alone, but a direct-input control without the graph outperforms it in all tested seeds
- The connectome's state contracts by at most 0.6 per token, proving it adds no long-range memory; context remains entirely backbone-derived
- Structural controls confirm the graph participates: zeroing edge weights exactly reproduces backbone performance, while relabeling nodes without retraining breaks the readout
- The project is MIT-licensed and locally deployable, but study artifacts are private, limiting independent reproducibility
Why It Matters
This work represents a novel attempt to integrate biological neural architecture into language model inference, offering a concrete benchmark for how much anatomical connectome structure can influence synthetic language processing. For researchers exploring neuromorphic computing or biologically-inspired AI, FLM provides an open, deployable reference system that rigorously quantifies both the contributions and limitations of connectome-based reservoirs. The finding that a connectome does not outperform a simple direct-input control has direct implications for the broader field of brain-computer interface design and hybrid bio-digital systems.
Technical Details
- Architecture (GPF — Generative Pre-trained Fly): A frozen LFM2.5-1.2B-Instruct backbone is coupled to the full MaleCNS v1.0 connectome via a reservoir computer interface. Token embeddings (2,048-dim) are compressed through a fixed Gaussian projection to 128 channels, each injected into one of 166,700 reservoir nodes with a random sign.
- Reservoir dynamics: Each node updates via x = tanh(W(0.6x + 0.4Bc)), where W encodes incoming-normalized anatomical contact counts from the connectome. States are pooled into 128 bins, passed through two trained bias-free matrices (U: 128×128, V: 2,048×128), and projected as a bounded residual (RMS capped at 0.25) added to the backbone logits.
- Training: Only the 278,528 readout parameters are trained; the graph, backbone, and all projection matrices are frozen. Evaluation used 32 SmolTalk everyday-conversation dialogues (1,236 target tokens).
- Benchmark results (NLL in nats/token): Frozen backbone: 1.381995 | Fly readout: 1.359816 ± 0.000110 | Direct-input control: 1.359328 ± 0.000108 | Relabeled no-refit: 1.381265 ± 0.000802 | No edges: 1.381995. Paired bootstrap interval (+0.000005 to +0.00104) confirms no statistically significant fly-specific gain.
- Memory analysis: The recurrence contraction bound of 0.6 per token decays to ~0.0000366 after 20 tokens, mathematically proving the connectome cannot sustain long-range dependencies beyond what the backbone already provides.
Industry Insight
- The study sets a methodological precedent for rigorously evaluating biological-reservoir hybrids by including strict controls (no edges, relabeled nodes, direct-input comparator), a standard other bio-AI proposals should adopt before claiming novel gains from anatomical structure.
- The negligible performance contribution of 166,700 biological neurons over a 1.2B-parameter frozen LM suggests that near-term investments in connectome-scale reservoir augmentation should be tempered by expectations; simpler projection strategies may capture most of the benefit at lower complexity.
- The gap between public code and private study artifacts highlights a reproducibility risk for emerging hybrid AI systems—full transparency of training data and fitted weights will be essential before connectome-language model claims can be independently validated or built upon.
Disclaimer: The above content is generated by AI and is for reference only.