Views
No views yet
no_std), where everything is an Agent or a Skill: ┌─────────────────────────────┐
│ Hermes (Intent Router) │
│ ReAct · Workflow · SDD · MCP │
└──────────┬──────────────────┘
│
┌────────────────┼────────────────┐
▼ ▼ ▼
┌────────────┐ ┌────────────┐ ┌────────────┐
│ Cortex │ │HW Expert v3│ │ Trinity │
│ LLM (BitNet)│ │ 61K HWIDs │ │ MoE Router│
│ 850M params│ │ 1M params │ │ 6 experts │
└────────────┘ └────────────┘ └────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────────────────────────────────┐
│ 247+ Agents (hardware + system) │
│ HwDetect · NetAgent · WifiAgent · Display │
│ GpuDriver · HDAudio · UvcCam · SelfHeal │
│ Cron · Security · Safety · Optimizer · ... │
└─────────────────────────────────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────────────────────────────────┐
│ Hardware · Firmware (116 blobs) · ATA │
│ NVIDIA GP108 · Intel i915 · Realtek · iwl │
│ e1000 · HDA · xHCI · AHCI · NVMe · TPM │
└─────────────────────────────────────────────┘| Capability | Value |
|---|---|
| Unique VID/DID recognized | 61.453 |
| Training data sources | SDIO (171K HWIDs) + pci.ids (23.8K) + usb.ids (23.9K) + kernel PCI tables (494) |
| Model architecture | 128 hidden, 6 layers, 8 heads, FFN 256 |
| Model size | 259 KB (fits in L2 cache) |
| Inference | ADD/SUB only (no FPU), 2-bit packing, 4 weights/byte |
| Loss | 3.55 → 0.389 (converged) |
| Dataset | Records | Source |
|---|---|---|
| SDIO DriverPacks | 171.003 HWIDs | 65 Windows DriverPacks, 20K .inf files |
| pci.ids | 23.888 (2.506 vendors, 21.382 devices) | Official PCI SIG list |
| usb.ids | 23.964 (3.427 vendors, 20.537 devices) | Official USB-IF list |
| Linux kernel | 494 PCI entries | Extracted from kernel drivers/ |
| linux-firmware WHENCE | 998 entries | Official firmware manifest |
| AMD microcode | 64 patches | Family/Model/Stepping from linux-firmware |
| Total | ~220.620 |
1# Clone the OS
2git clone https://github.com/msrovani/neural-os-core.git
3cd neural-os-core
4
5# Build (requires Rust nightly)
6cargo build --release
7
8# Run in QEMU
9python tools/build_image.py
10./run-qemu-uefi.ps1
11
12# Or boot on real hardware (x86_64 UEFI)
13# Use tools/disk_hw.raw as a USB drive image| Artifact | Description | Link |
|---|---|---|
🧠 neural-os/hw-expert-v3 | HW identification model (this) | Model Card → |
💾 neural-os/sdio-hwids | 171K HWIDs from 65 DriverPacks | Dataset → |
💾 neural-os/pci-usb-ids | 48K official PCI/USB IDs | Dataset → |
💾 neural-os/firmware-metadata | 1.2K firmware entries from WHENCE | Dataset → |
📡 neural-os/regulatory-db | WiFi regulations for 174 countries | Dataset → |