rmems commited on
Commit
03d4fb0
·
1 Parent(s): 2b5ec62

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -133
README.md CHANGED
@@ -1,146 +1,52 @@
1
  ---
2
  language:
3
  - en
4
- license: gpl-3.0
5
- size_categories:
6
- - 1M<n<10M
7
  task_categories:
8
  - time-series-forecasting
9
- task_ids:
10
- - multivariate-time-series-forecasting
11
- pretty_name: Spikenaut SNN v2 — GPU Telemetry & Market Data
12
- tags:
13
- - spiking-neural-networks
14
- - neuromorphic
15
- - gpu-telemetry
16
- - cryptocurrency
17
- - blockchain
18
- - dynex
19
- - qubic
20
- - kaspa
21
- - monero
22
- - liquid-state-machine
23
- - stdp
24
- - julia
25
- - rust
26
- - cuda
27
  ---
28
 
29
- # Spikenaut SNN v2 — GPU Telemetry & Market Data
30
 
31
- **Author:** Raul Montoya Cardenas
32
- **Institution:** Texas State University — Micro & Nano Device Systems (Spring 2026)
33
- **Project:** [Eagle-Lander / Ship of Theseus](https://github.com/rmems/ship_of_theseus_rs)
34
 
35
- Real hardware telemetry and live market data collected from an RTX 5080 mining rig running
36
- DNX, Qubic, Kaspa, and Monero workloads. Used to train and validate the Spikenaut V2
37
- 4-lobe Ensemble Liquid State Machine (262,144 LIF neurons, CUDA-accelerated).
38
 
39
- ---
 
 
40
 
41
- ## Dataset Contents
42
 
43
  | File | Rows | Size | Description |
44
- |------|------|------|-------------|
45
- | `data/neuromorphic_data.jsonl` | 789,114 | 363 MB | Primary GPU telemetry voltage, temp, hashrate, power, clock, Qubic tick traces |
46
- | `data/ghost_market_log.jsonl` | 223,020 | 174 MB | Live market ticks DNX, Qubic, Kaspa, Monero, Ocean, Verus price & volatility |
47
- | `data/node_sync_harvest.jsonl` | 120,334 | 55 MB | Blockchain node sync events Kaspa, Monero, Dynex block acceptance rates |
48
- | `data/snn_model.json` | | 3.8 KB | Trained SNN model weights snapshot |
49
- | `data/parameters.mem` | | 80 B | FPGA-compatible membrane potential parameters (Q8.8 fixed-point) |
50
- | `data/parameters_decay.mem` | | 80 B | FPGA-compatible decay parameters |
51
- | `data/parameters_weights.mem` | | 1.3 KB | FPGA-compatible synaptic weight parameters |
52
-
53
- **Total: ~1.13M rows, 592 MB**
54
-
55
- ---
56
-
57
- ## Telemetry Schema (`neuromorphic_data.jsonl`)
58
-
59
- Each row is a JSON object with a `telemetry` key:
60
-
61
- ```json
62
- {
63
- "telemetry": {
64
- "vddcr_gfx_v": 0.7115,
65
- "vram_temp_c": 59.0,
66
- "gpu_temp_c": 51.0,
67
- "hashrate_mh": 0.0,
68
- "power_w": 156.9,
69
- "gpu_clock_mhz": 2872.0,
70
- "mem_clock_mhz": 14801.0,
71
- "fan_speed_pct": 30.0,
72
- "mem_util_pct": 27.0,
73
- "power_z_score": 0.0,
74
- "temp_z_score": 0.0,
75
- "clock_z_score": 0.0,
76
- "qubic_tick_trace": 0.935,
77
- "qubic_tick_rate": 1.0,
78
- "qubic_epoch_progress": 1.0,
79
- "ocean_intel": 0.0,
80
- "qu_price_usd": 0.0
81
- }
82
- }
83
- ```
84
-
85
- ---
86
-
87
- ## Hardware
88
-
89
- - **GPU:** NVIDIA RTX 5080 (16 GB VRAM, Blackwell sm_120)
90
- - **Mining workloads:** DNX (Dynex), Qubic, Kaspa (KHeavyHash), Monero (RandomX)
91
- - **FPGA:** Artix-7 Basys3 — SNN reflex arc co-processor
92
- - **OS:** RHEL 8 / Fedora
93
-
94
- ---
95
-
96
- ## SNN Architecture This Data Trains
97
-
98
- ```
99
- MarketPulse (14 channels) + GPU Telemetry
100
-
101
- [4 Parallel LIF Lobes]
102
- ├── Scalper τ=10ms w=0.4
103
- ├── Day τ=25ms w=0.3
104
- ├── Swing τ=50ms w=0.2
105
- └── Macro τ=100ms w=0.1
106
-
107
- Weighted Readout (16 channels)
108
- Bull/Bear signals + confidence
109
- ```
110
-
111
- - 262,144 total neurons (4 × 65,536)
112
- - Sparse recurrent connectivity (1%, ~42M synapses)
113
- - Ornstein-Uhlenbeck stochastic dynamics
114
- - STDP covariance learning
115
- - Hardware proprioception: GPU temp/power → global inhibition
116
-
117
- ---
118
-
119
- ## Usage
120
-
121
- ```python
122
- import json
123
-
124
- # Load GPU telemetry
125
- with open("data/neuromorphic_data.jsonl") as f:
126
- for line in f:
127
- row = json.loads(line)
128
- t = row["telemetry"]
129
- print(t["gpu_temp_c"], t["power_w"], t["qubic_tick_rate"])
130
-
131
- # Load market ticks
132
- with open("data/ghost_market_log.jsonl") as f:
133
- for line in f:
134
- tick = json.loads(line)
135
- print(tick)
136
- ```
137
-
138
- ---
139
-
140
- ## License
141
-
142
- GPL-3.0 — same as the [Eagle-Lander](https://github.com/rmems/ship_of_theseus_rs) project.
143
-
144
- ---
145
-
146
- *Collected on ShipOfTheseus — Texas. All telemetry sanitized via the internal privacy scrubber.*
 
1
  ---
2
  language:
3
  - en
4
+ license: mit
 
 
5
  task_categories:
6
  - time-series-forecasting
7
+ - feature-extraction
8
+ pretty_name: "Spikenaut V2 Telemetry Data"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
 
11
+ # Spikenaut V2 Telemetry Data
12
 
13
+ Multivariate time-series dataset for training a hardware-aware Spiking Neural Network (SNN) across 7 blockchain networks.
 
 
14
 
15
+ ## Dataset Description
 
 
16
 
17
+ - **Total Events:** 1,132,861 validated neuromorphic events
18
+ - **Format:** JSONL (JSON Lines)
19
+ - **Pre-scrubbed:** All sensitive identifiers (wallets, IPs, hostnames) removed
20
 
21
+ ## Files
22
 
23
  | File | Rows | Size | Description |
24
+ |---|---|---|---|
25
+ | `neuromorphic_data.jsonl` | 789,114 | 363 MB | GPU telemetry: voltage, temps, hashrate, power, clocks, fan speed, utilization |
26
+ | `ghost_market_log.jsonl` | 223,020 | 174 MB | Live crypto market ticks: price & volatility for DNX, Qubic, Kaspa, Monero, Ocean, Verus |
27
+ | `node_sync_harvest.jsonl` | 120,334 | 55 MB | Blockchain node sync events: block acceptance rates for Kaspa, Monero, Dynex |
28
+ | `qubic_ticks.jsonl` | 27,430 | - | Qubic epoch & tick traces |
29
+ | `snn_model.json` | - | 3.8 KB | Snapshot of trained SNN model weights |
30
+ | `parameters.mem` | - | - | FPGA Q8.8 membrane potential parameters |
31
+ | `parameters_decay.mem` | - | - | FPGA Q8.8 decay parameters |
32
+ | `parameters_weights.mem` | - | - | FPGA Q8.8 synaptic weights |
33
+
34
+ ## Channels (V2: 16-channel)
35
+
36
+ V2 processes 16 parallel channels across 4 trading lobes (Scalper, Day, Swing, Macro):
37
+ - Hardware telemetry (GPU/CPU temp, power, clocks, fan)
38
+ - Blockchain sync metrics (block acceptance, tick rates)
39
+ - Market data (price, volatility across 6+ assets)
40
+ - Qubic epoch/tick traces
41
+
42
+ ## Use Cases
43
+
44
+ - Multivariate time-series forecasting for cryptocurrency markets
45
+ - Hardware telemetry anomaly detection
46
+ - FPGA co-processor deployment (Xilinx Artix-7)
47
+ - SNN training with E-prop + OTTT learning rules
48
+
49
+ ## Related
50
+
51
+ - **V2 Model:** [Spikenaut-SNN-v2](https://huggingface.co/rmems/Spikenaut-SNN-v2)
52
+ - **V1 Dataset:** [Spikenaut-v1-Telemetry-Data](https://huggingface.co/datasets/rmems/Spikenaut-v1-Telemetry-Data)