singularityjason commited on
Commit
bfe1762
·
verified ·
1 Parent(s): ba24791

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
+ tags:
8
+ - benchmark
9
+ - memory
10
+ - ai-agents
11
+ - longitudinal
12
+ - evaluation
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # MemoryStress Dataset
18
+
19
+ **The first longitudinal benchmark for AI memory systems.**
20
+
21
+ 583 facts x 1,000 sessions x 300 questions x 6 scoring dimensions.
22
+
23
+ ## Overview
24
+
25
+ Every existing memory benchmark tests recall from a handful of sessions. MemoryStress tests what happens at session 1,000 — when facts contradict, memories fade, and noise accumulates over 10 simulated months.
26
+
27
+ ## Dataset Structure
28
+
29
+ ```json
30
+ {
31
+ "version": "1.0",
32
+ "phases": { "1": {...}, "2": {...}, "3": {...} },
33
+ "stats": { "total_facts": 583, "total_sessions": 1000, ... },
34
+ "facts": [ { "fact_id": "F001", "content": "...", ... } ],
35
+ "contradiction_chains": [ { "chain_id": "C001", ... } ],
36
+ "sessions": [ { "session_id": "S0001", "turns": [...], ... } ],
37
+ "questions": [ { "question_id": "Q001", "question": "...", ... } ]
38
+ }
39
+ ```
40
+
41
+ ## Key Features
42
+
43
+ - **583 facts** across 6 categories (preferences, decisions, technical, personal, events, relationships)
44
+ - **1,000 sessions** across 3 phases of increasing noise
45
+ - **40 contradiction chains** where facts update, revert, accumulate, or partially change
46
+ - **300 questions** at 4 phase checkpoints, spanning 7 question types
47
+ - **6 scoring dimensions**: recall@age, degradation curve, contradiction resolution, cost efficiency, cross-agent recall, cold start recovery
48
+
49
+ ## Three Phases of Pressure
50
+
51
+ | Phase | Sessions | Description |
52
+ |-------|----------|-------------|
53
+ | Phase 1 | 1-100 | Low noise, establishing baseline |
54
+ | Phase 2 | 101-500 | Growing noise, contradictions emerge |
55
+ | Phase 3 | 501-1000 | Dense, high-entropy, multi-topic stress |
56
+ | Phase 4 | Recovery | No new sessions — can you still recall? |
57
+
58
+ ## Usage
59
+
60
+ ```bash
61
+ pip install memorystress
62
+
63
+ # Run the null baseline (free, instant)
64
+ memorystress run --dataset memorystress_v1.json --adapter null --grade
65
+
66
+ # Run with OMEGA
67
+ memorystress run --dataset memorystress_v1.json --adapter omega --grade --extract-facts
68
+ ```
69
+
70
+ ## Benchmark Code
71
+
72
+ Full benchmark framework: [github.com/omega-memory/memorystress](https://github.com/omega-memory/memorystress)
73
+
74
+ ## Citation
75
+
76
+ ```bibtex
77
+ @software{memorystress2026,
78
+ title={MemoryStress: The First Longitudinal Benchmark for AI Memory Systems},
79
+ author={OMEGA Memory},
80
+ url={https://github.com/omega-memory/memorystress},
81
+ year={2026}
82
+ }
83
+ ```
84
+
85
+ ## License
86
+
87
+ Apache-2.0