ruv commited on
Commit
e7de02d
·
verified ·
1 Parent(s): c316a38

data: Add v2.5 performance optimization stats

Browse files
training/v2.5-performance-stats.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.5",
3
+ "release_name": "Performance Optimized Edition",
4
+ "release_date": "2026-01-21T10:46:53.928251",
5
+ "optimizations": {
6
+ "hnsw_index": {
7
+ "description": "Hierarchical Navigable Small World graphs",
8
+ "improvement": "10x faster search at 10k entries"
9
+ },
10
+ "lru_cache": {
11
+ "description": "O(1) LRU cache using Rust lru crate",
12
+ "lookup_time_ns": 23.5
13
+ },
14
+ "zero_copy": {
15
+ "description": "Arc<str> string interning",
16
+ "improvement": "100-1000x cache improvement"
17
+ },
18
+ "batch_simd": {
19
+ "description": "AVX2/NEON vectorization",
20
+ "improvement": "4x throughput"
21
+ },
22
+ "memory_pools": {
23
+ "description": "Arena allocation",
24
+ "improvement": "50% fewer allocations"
25
+ }
26
+ },
27
+ "benchmarks": {
28
+ "query_decomposition_ns": 340,
29
+ "cache_lookup_ns": 23.5,
30
+ "memory_search_10k_ms": 0.4,
31
+ "pattern_retrieval_us": 25,
32
+ "routing_accuracy_hybrid": 1.0,
33
+ "routing_accuracy_embedding_only": 0.45
34
+ },
35
+ "models": {
36
+ "claude_code_0.5b": {
37
+ "file": "ruvltra-claude-code-0.5b-q4_k_m.gguf",
38
+ "size_mb": 398,
39
+ "purpose": "Agent routing",
40
+ "context_length": 32768
41
+ },
42
+ "small_0.5b": {
43
+ "file": "ruvltra-small-0.5b-q4_k_m.gguf",
44
+ "size_mb": 400,
45
+ "purpose": "General embeddings",
46
+ "context_length": 32768
47
+ },
48
+ "medium_3b": {
49
+ "file": "ruvltra-medium-3b-q4_k_m.gguf",
50
+ "size_mb": 2048,
51
+ "purpose": "Full LLM inference",
52
+ "context_length": 262144
53
+ }
54
+ },
55
+ "performance_targets": {
56
+ "flash_attention_speedup": "2.49x-7.47x",
57
+ "hnsw_search_speedup": "150x-12500x",
58
+ "memory_reduction": "50-75%",
59
+ "mcp_response_ms": 100,
60
+ "sona_adaptation_ms": 0.05
61
+ },
62
+ "training_data": {
63
+ "labeled_examples": 381,
64
+ "contrastive_pairs": 793,
65
+ "agent_types": 60
66
+ }
67
+ }