Datasets:
image imagewidth (px) 4.2k 4.2k | label class label 4
classes |
|---|---|
1fourth-test | |
2second-test | |
3third-test | |
0first-test-falied | |
0first-test-falied | |
1fourth-test | |
2second-test | |
3third-test |
Metis-OLMoE-Latent-Telemetry: Spikenaut SNN Routing
1. The Origins of Metis
Before this was a formal dataset, it was an attempt to solve a bare-metal problem. I had been experimenting with mining telemetry, HFT bots, and sync node data to train a spiking neural network (SNN), but the data kept returning dead zeros in value after being used for training.
The breakthrough came entirely by accident. I was running heavy mods—DLSS 4.0 and path tracing—on Cyberpunk 2077 and the Resident Evil 4 Remake. My workstation PC was screaming, pushing harder and louder than it ever did during crypto mining. That sparked the realization: What if I used raw gaming telemetry data for neuromorphic spike data conversion? What if I could use this intense hardware stress to create an artificial heartbeat for AI?
When I pitched this idea, most people didn't believe the spike data conversion would work. But after refining the early thermal equations using that Resident Evil 4 telemetry, Metis was born—a MoE-based SNN quantizaton model and dataset architecture for exploring SNN quantization.
Relationship to Spikenaut
Spikenaut is my pure SNN model, built from scratch as a native spiking neural network. Metis (this repository) serves as the architect and teacher—exploring SNN quantization techniques through the OLMoE Mixture-of-Experts model. The discoveries, equations, and architecture frameworks developed here feed directly into Spikenaut's training and evolution. Metis proves the math; Spikenaut implements it natively.
2. The Science: Semantic Attractor Clustering
This dataset contains the raw bare-metal telemetry logs and latent space visualizations generated by the routing encoder. The objective is to map the physical routing of LLM embeddings (specifically from the allenai/OLMoE-1B-7B-0125-Instruct-GGUF Mixture of Experts model) as they are processed by biologically-inspired neuronal fatigue mechanics. These insights directly inform the training of Spikenaut, my pure native SNN.
The Discovery: Physical Neighborhood Mapping
The primary breakthrough documented in this dataset is the organic, physical separation of semantic concepts into distinct routing bands. By applying L2 Normalization to the embeddings, the network bounds semantic pressure, forcing tokens to follow the biological path of least resistance.
Telemetry visualizations prove that the Spike-based routing physically routes different cognitive tasks into isolated biological neighborhoods:
Abstract Language Routing (The 2000-Route)
When fed abstract English logic, the network distributes energy across multiple nodes, establishing a dominant attractor basin at the 2000-index walker route, with secondary echoes in Walkers 700 and 1450.

Structured Logic Routing (The 600-800 Band)
When fed rigid mathematical statements or raw Rust syntax, the network completely abandons the 2000-route. The tokens experience mathematical pushback in abstract centers and organically collapse into the exact same 600-800 frequency band. This demonstrates that the network physically maps highly structured logic tasks to adjacent biological neighborhoods to conserve energy.

3. Experiment Progression
The dataset documents the chronological progression from synthetic baselines to actual semantic routing:
- Phase 1: Synthetic Baseline (Smoke Test)
- Input: Synthetic sine wave.
- Result: Verified the GPU temporal loop (10,000 ticks) and basic biological fatigue without crashing the CUDA context.
- Phase 2: The F16 Magnitude Collapse (Unbounded)
- Input: Real LLM embeddings (OLMoE).
- Result: Unscaled F16-to-F32 extraction resulted in raw, unbounded electrical pressure. A single expert neuron (Walker ~620) was overwhelmed, causing a routing collapse where one walker took the entire load for the full temporal loop.
- Phase 3: L2 Normalization & Philosophy Attractors
- Input:
"Let's teach this MoE model..."(Abstract English). - Result: L2 Normalization successfully shattered the routing collapse. Energy dynamically settled into high-register attractor bands, predominantly isolating into the 2000-route.
- Input:
- Phase 4: Semantic Clustering (Code & Math Logic)
- Input A:
fn main() { println!("Hello, World!"); }(Rust Syntax) - Input B:
"The derivative of a constant is mathematically zero."(Math Logic) - Result: The SNN abandoned the 2000-route completely. Both raw Rust syntax and mathematical logic organically fell into the exact same 600-800 frequency band. This demonstrates that the network physically maps highly structured logic tasks to adjacent biological neighborhoods.
- Input A:
Dataset for Spikenaut SNN Research
This dataset contains latent telemetry and routing data generated from the SNN-quantized version of AllenAI’s OLMoE-1B-7B-0125-Instruct model using the corinth-canal pipeline. The heavy mathethical analysis is documented and implemented in the 'surrogate_viz.jl' repository.
Purpose
These files are used to study spiking behavior, routing stability, and adaptive quantization (SAAQ) in SNN-converted MoE models. The data feeds SymbolicRegression.jl to discover new equations for improved SNN quantization and ultimately trains the pure native Spikenaut SNN.
Folder Structure
routing/ — CSV files containing routing and latent telemetry data
first-day/ — Early experimental runs (optional)
SAAQ 3.0/ — Future runs with new algorithm versions
experiments/ — Additional test configurations and variants
results/
- plots/ — Visualization of SNN routing paths and firing density
- raw_telemetry/ — Original tick-by-tick log files
Origin Hardware Baselines (
/origin_hardware_baselines/)
This directory contains the foundational, bare-metal hardware telemetry that inspired the Spikenaut SAAQ thermal equations.
RE4_path_tracing_telemetry.csv: This file captures the extreme hardware stress (GPU/CPU temps, package power, clock speeds) generated by running the Resident Evil 4 Remake with heavy modifications (path tracing, DLSS 4.0) on a high-performance workstation PC.Purpose: This specific dataset proved that intense gaming workloads create a highly dynamic, non-zero biological "heartbeat" compared to static crypto-mining telemetry. These exact thermal fluctuations were used to derive the baseline fatigue limits for the SNN's
tick_gpu_temporalloop.Related Repos
- corinth-canal — SNN quantization pipeline
- Surrogate_Viz.jl — Symbolic regression and visualization
- Downloads last month
- 110