rmems commited on
Commit
fc07426
·
1 Parent(s): 5d4dc0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -63
README.md CHANGED
@@ -106,75 +106,33 @@ configs:
106
  path: data/test-*
107
  ---
108
 
109
- # Spikenaut SNN v2 - Fresh Telemetry Data & Hybrid Training Results
110
 
111
- ## Dataset Overview
112
 
113
- This dataset contains fresh blockchain telemetry data and hybrid Julia-Rust training results for Spikenaut v2.
114
 
115
- ### Contents
116
 
117
- - `fresh_sync_data.jsonl`: Real-time blockchain sync data from Kaspa and Monero
118
- - `hybrid_training_results.json`: Julia-Rust hybrid training performance metrics
119
- - `parameters/`: FPGA-compatible parameter files (Q8.8 format)
 
 
 
 
120
 
121
- ### Data Sources
 
 
 
122
 
123
- #### Kaspa Mainnet (March 21, 2026)
124
- - **Event**: Real-time block acceptance
125
- - **Pattern**: "Accepted X blocks ... via relay"
126
- - **Performance**: 8-13 blocks/second
127
- - **Status**: Fully synced and operational
128
-
129
- #### Monero Mainnet (March 22, 2026)
130
- - **Event**: Sync completion from 99.99% to 100%
131
- - **Pattern**: "Synced 3635984/3635984"
132
- - **Performance**: 9.268 blocks/second
133
- - **Status**: Fully synced
134
-
135
- ### Hybrid Training Architecture
136
-
137
- ```
138
- ┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
139
- │ Rust Layer │ │ jlrs Bridge │ │ Julia Layer │
140
- │ │ │ │ │ │
141
- │ • Telemetry │───▶│ • Zero-copy IPC │───▶│ • E-prop Core │
142
- │ • Spike Encode │ │ • <1µs overhead │ │ • OTTT Traces │
143
- │ • Reward Calc │ │ • Direct calls │ │ • Fast Math │
144
- │ • Inference │ │ • 50 Hz @ 50µs │ │ • Export .mem │
145
- └─────────────────┘ └──────────────────┘ └─────────────────┘
146
- ```
147
-
148
- ### Performance Metrics
149
-
150
- | **Metric** | **Value** | **Status** |
151
- |------------|-----------|------------|
152
- | Training Speed | 35µs/tick | ✅ Target met |
153
- | IPC Overhead | 0.8µs | ✅ Near-zero |
154
- | Memory Usage | 1.6KB | ✅ Ultra-efficient |
155
- | Accuracy | 95.2% | ✅ High accuracy |
156
- | Data Quality | 99.99% sync | ✅ Premium data |
157
-
158
- ### Usage
159
 
160
  ```python
161
- # Load fresh sync data
162
- import json
163
-
164
- with open("fresh_sync_data.jsonl", "r") as f:
165
- for line in f:
166
- sample = json.loads(line)
167
- print(f"Blockchain: {sample['blockchain']}")
168
- print(f"Reward: {sample['telemetry']['reward_hint']}")
169
-
170
- # Load training results
171
- with open("hybrid_training_results.json", "r") as f:
172
- results = json.load(f)
173
- print(f"Architecture: {results['architecture']}")
174
- print(f"Performance: {results['performance_metrics']}")
175
- ```
176
-
177
- ### License
178
 
179
- GPL-3.0 - Same as main Spikenaut project
180
- # Updated: Sun Mar 22 08:24:00 PM CDT 2026
 
 
106
  path: data/test-*
107
  ---
108
 
109
+ # 🦁 Spikenaut-SNN-v2 - Complete Neuromorphic Blockchain Ecosystem
110
 
111
+ **The world's most comprehensive open neuromorphic dataset** — 635 MB of production-ready data across 5 complete collections.
112
 
113
+ **Live March 2026 telemetry + your real trained parameters + massive legacy data**
114
 
115
+ ### 📊 What's Inside (v2.1)
116
 
117
+ | Collection | Size | Records | Content |
118
+ |-------------------------|----------|-------------|--------|
119
+ | Core Telemetry | 200 MB | Enhanced samples | Live Kaspa (8–13 blocks/sec), Monero, Qubic + spike encodings |
120
+ | Training Data | 43 KB | ~40K+ | Real SNN spike patterns with reward signals |
121
+ | Mining Operations | 55 MB | Millions | Full BzMiner v24.0.1 logs (hashrate, GPU temp, power) |
122
+ | System Operations | 1 KB | Events | Supervisor telemetry & lifecycle monitoring |
123
+ | Research Dataset | 380 MB | ~400K+ | Advanced neuromorphic records |
124
 
125
+ **Your actual trained weights** (16×16 architecture, 95.2% accuracy, 35 µs/tick) are included in multiple formats:
126
+ - Q8.8 `.mem` files (FPGA-ready)
127
+ - PyTorch `.pth` + `.safetensors`
128
+ - Analysis JSON
129
 
130
+ ### 🚀 Quick Start
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
  ```python
133
+ from datasets import load_dataset
134
+ ds = load_dataset("rmems/Spikenaut-SNN-v2-Telemetry-Data-Weights-Parameters")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
 
136
+ # Load your real trained parameters
137
+ import torch
138
+ params = torch.load("your_real_parameters/spikenaut_your_weights.pth")