Datasets:
Added all neccessary data files.
Browse files- .gitattributes +2 -0
- README.md +17 -1
- experiments/latent_space_exploration_2nd_attempt_smoketest.png +3 -0
- experiments/latent_space_exploration_smoketest.png +3 -0
- {first-day → first-day-testing-real-weights}/.gitkeep +0 -0
- {first-day → first-day-testing-real-weights}/first-test-falied/latent_space_exploration_first_real_attempt.png +0 -0
- {first-day → first-day-testing-real-weights}/fourth-test/map_olmoe_math_logic.png +0 -0
- {first-day → first-day-testing-real-weights}/fourth-test/telemetry_olmoe_math_logic.txt +0 -0
- {first-day → first-day-testing-real-weights}/second-test/latent_space_exploration_2nd_attempt_successful.png +0 -0
- {first-day → first-day-testing-real-weights}/third-test/latent_space_exploration_third_attempt.png +0 -0
- {first-day → first-day-testing-real-weights}/third-test/latent_space_exploration_third_attempt.txt +0 -0
- first-day-testing-real-weights/third-test/snn_latent_telemetry.csv +3 -0
- origin_hardware_baselines/resident_evil_4/RE4_path_tracing_telemetry.csv +3 -0
.gitattributes
CHANGED
|
@@ -55,6 +55,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 55 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 56 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 57 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 55 |
*.jpg filter=lfs diff=lfs merge=lfs -text
|
| 56 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 57 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 59 |
# Video files - compressed
|
| 60 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 61 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
*.csv filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -3,15 +3,25 @@ license: gpl-3.0
|
|
| 3 |
---
|
| 4 |
# Metis-OLMoE-Latent-Telemetry: Spikenaut SNN Routing
|
| 5 |
|
|
|
|
| 6 |
## 1. The Origin of my Neuromorphic journey and this project
|
|
|
|
|
|
|
| 7 |
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.
|
| 8 |
|
| 9 |
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?
|
| 10 |
|
|
|
|
| 11 |
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, the Spikenaut architecture was born. The true origin of this project is deeply personal—it stems from my switch from Computer Science to Electrical Engineering, the struggle to learn on my own terms, and the drive to build an architecture that adapts dynamically. Now, I am dropping these new SNN quantization models and datasets on Hugging Face to prove the math works and to keep the research completely open and transparent.
|
| 12 |
|
| 13 |
## 2. The Science: Semantic Attractor Clustering
|
| 14 |
This dataset contains the raw bare-metal telemetry logs and latent space visualizations generated by the **Spikenaut** SNN architecture. 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
The primary discovery documented here is **Semantic Attractor Clustering**. By applying L2 Normalization to F16-to-F32 casted embeddings, the SNN bounds the semantic pressure to a unit sphere. This prevents "Winner-Take-All" routing collapse and forces the network to organically balance the load. The resulting telemetry proves that the SNN physically routes different semantic concepts (e.g., abstract philosophy vs. rigid code syntax) into distinct, repeatable biological pathways.
|
| 17 |
|
|
@@ -34,7 +44,9 @@ The dataset documents the chronological progression from synthetic baselines to
|
|
| 34 |
|
| 35 |
**Dataset for Spikenaut SNN Research**
|
| 36 |
|
| 37 |
-
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.
|
|
|
|
|
|
|
| 38 |
|
| 39 |
### Purpose
|
| 40 |
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.
|
|
@@ -52,3 +64,7 @@ These files are used to study spiking behavior, routing stability, and adaptive
|
|
| 52 |
### Related Repos
|
| 53 |
- [corinth-canal](https://github.com/Limen-Neural/corinth-canal) — SNN quantization pipeline
|
| 54 |
- [Surrogate_Viz.jl](https://github.com/Spikenaut/Surrogate_Viz.jl) — Symbolic regression and visualization
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
# Metis-OLMoE-Latent-Telemetry: Spikenaut SNN Routing
|
| 5 |
|
| 6 |
+
<<<<<<< HEAD
|
| 7 |
## 1. The Origin of my Neuromorphic journey and this project
|
| 8 |
+
=======
|
| 9 |
+
## 1. The Origin of Spikenaut
|
| 10 |
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.
|
| 11 |
|
| 12 |
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?
|
| 13 |
|
| 14 |
+
<<<<<<< HEAD
|
| 15 |
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, the Spikenaut architecture was born. The true origin of this project is deeply personal—it stems from my switch from Computer Science to Electrical Engineering, the struggle to learn on my own terms, and the drive to build an architecture that adapts dynamically. Now, I am dropping these new SNN quantization models and datasets on Hugging Face to prove the math works and to keep the research completely open and transparent.
|
| 16 |
|
| 17 |
## 2. The Science: Semantic Attractor Clustering
|
| 18 |
This dataset contains the raw bare-metal telemetry logs and latent space visualizations generated by the **Spikenaut** SNN architecture. 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.
|
| 19 |
+
=======
|
| 20 |
+
When I pitched this idea, most people didn't believe it would be good AI training data (spike data conversion)would work. But after refining the early thermal equations using that Resident Evil 4 telemetry, the Spikenaut architecture was born. The true origin of this project is deeply personal—it stems from my switch from starting Economics, Pre-med, Finance, Computer Science major switch to Electrical Engineering, the struggle to learn on my own terms, and the drive to build an architecture that adapts dynamically. Now, I am dropping these new SNN quantization models and datasets on Hugging Face to prove the math works and to keep the research completely open and transparent.
|
| 21 |
+
|
| 22 |
+
## 2. The Science: Semantic Attractor Clustering
|
| 23 |
+
This dataset contains the raw bare-metal telemetry logs and latent space visualizations generated by the **Spikenaut** SNN architecture. The objective is to map the physical routing of LLM embeddings (specifically from the OLMoE-0125 Mixture of Experts model) as they are processed by biologically-inspired neuronal fatigue mechanics.
|
| 24 |
+
>>>>>>> ec02242 (Added all neccessary data files.)>>>>>>> ec02242 (Added all neccessary data files.)
|
| 25 |
|
| 26 |
The primary discovery documented here is **Semantic Attractor Clustering**. By applying L2 Normalization to F16-to-F32 casted embeddings, the SNN bounds the semantic pressure to a unit sphere. This prevents "Winner-Take-All" routing collapse and forces the network to organically balance the load. The resulting telemetry proves that the SNN physically routes different semantic concepts (e.g., abstract philosophy vs. rigid code syntax) into distinct, repeatable biological pathways.
|
| 27 |
|
|
|
|
| 44 |
|
| 45 |
**Dataset for Spikenaut SNN Research**
|
| 46 |
|
| 47 |
+
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.
|
| 48 |
+
|
| 49 |
+
|
| 50 |
|
| 51 |
### Purpose
|
| 52 |
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.
|
|
|
|
| 64 |
### Related Repos
|
| 65 |
- [corinth-canal](https://github.com/Limen-Neural/corinth-canal) — SNN quantization pipeline
|
| 66 |
- [Surrogate_Viz.jl](https://github.com/Spikenaut/Surrogate_Viz.jl) — Symbolic regression and visualization
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
|
experiments/latent_space_exploration_2nd_attempt_smoketest.png
ADDED
|
Git LFS Details
|
experiments/latent_space_exploration_smoketest.png
ADDED
|
Git LFS Details
|
{first-day → first-day-testing-real-weights}/.gitkeep
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/first-test-falied/latent_space_exploration_first_real_attempt.png
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/fourth-test/map_olmoe_math_logic.png
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/fourth-test/telemetry_olmoe_math_logic.txt
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/second-test/latent_space_exploration_2nd_attempt_successful.png
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/third-test/latent_space_exploration_third_attempt.png
RENAMED
|
File without changes
|
{first-day → first-day-testing-real-weights}/third-test/latent_space_exploration_third_attempt.txt
RENAMED
|
File without changes
|
first-day-testing-real-weights/third-test/snn_latent_telemetry.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fe9d51a8253ad5b236405607fb86e3ad3c0937abd60a91810ba3d14746eff101
|
| 3 |
+
size 119634
|
origin_hardware_baselines/resident_evil_4/RE4_path_tracing_telemetry.csv
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79be5d2b8420b324105332e29770b1f794ec9aac47b5eccb14492b59df348c0b
|
| 3 |
+
size 85633
|