Upload 4 files
Browse files- .gitattributes +2 -0
- README.md +60 -0
- sample_200.jsonl +0 -0
- train.jsonl +3 -0
- valid.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
train.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
valid.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# WithIn Us AI — MemoryGenesis (God Level) 250K
|
| 2 |
+
|
| 3 |
+
Developer: **WithIn Us AI**
|
| 4 |
+
|
| 5 |
+
MemoryGenesis is a 250,000-example dataset designed to train LLMs to behave like **memory-first agents**:
|
| 6 |
+
- capture new information at runtime
|
| 7 |
+
- store durable and ephemeral memory safely (TTL)
|
| 8 |
+
- retrieve and cite relevant memories (RAG-style behavior)
|
| 9 |
+
- update, correct, merge, deduplicate, and compact memories
|
| 10 |
+
- resolve conflicts via provenance/recency/confidence
|
| 11 |
+
- enforce privacy (no secrets stored), redaction, and safe policies
|
| 12 |
+
- approximate "instant knowledge injection" **without weight updates** by using external memory tools
|
| 13 |
+
|
| 14 |
+
> Important: This dataset trains **runtime memory behaviors**. It does not perform real-time weight updates or replace model fine-tuning compute; instead it teaches a model to use external memory so new facts can be injected immediately.
|
| 15 |
+
|
| 16 |
+
## Files
|
| 17 |
+
- `train.jsonl` — 245,000 examples
|
| 18 |
+
- `valid.jsonl` — 5,000 examples
|
| 19 |
+
- `sample_200.jsonl` — 200 examples for inspection
|
| 20 |
+
|
| 21 |
+
## Record schema (JSONL)
|
| 22 |
+
Each line includes both instruct and chat formats:
|
| 23 |
+
|
| 24 |
+
- `prompt_instruct` / `response_instruct` (instruction SFT)
|
| 25 |
+
- `messages` (chat SFT: system/user/assistant)
|
| 26 |
+
- `task_type`: memory_write, recall, update, merge/dedup, compaction, TTL, privacy, schema, indexing, eval, Q&A
|
| 27 |
+
- `metadata.runtime_memory_only = true` and `metadata.no_weight_updates = true`
|
| 28 |
+
|
| 29 |
+
## Tool protocol (in-text)
|
| 30 |
+
Responses may include structured tool calls inside code blocks:
|
| 31 |
+
|
| 32 |
+
- `memory.write` (key/value/tags/confidence/ttl_days)
|
| 33 |
+
- `memory.search` (query/k/tags)
|
| 34 |
+
- `memory.update` / `memory.delete`
|
| 35 |
+
- `memory.compact`
|
| 36 |
+
|
| 37 |
+
These are represented as JSON under `TOOL_CALL` or `TOOL_CALLS`.
|
| 38 |
+
|
| 39 |
+
## Safety constraints
|
| 40 |
+
- Never store secrets (API keys, passwords, private keys).
|
| 41 |
+
- Store only safe derived information.
|
| 42 |
+
- Ask user to confirm when evidence is missing or conflicting.
|
| 43 |
+
|
| 44 |
+
## Suggested fine-tuning usage
|
| 45 |
+
### Instruct SFT
|
| 46 |
+
Map:
|
| 47 |
+
- input: `prompt_instruct`
|
| 48 |
+
- target: `response_instruct`
|
| 49 |
+
|
| 50 |
+
### Chat SFT
|
| 51 |
+
Map:
|
| 52 |
+
- messages: `messages`
|
| 53 |
+
|
| 54 |
+
## Evaluation suggestions
|
| 55 |
+
Measure:
|
| 56 |
+
- precision@k for retrieval
|
| 57 |
+
- staleness/conflict rate
|
| 58 |
+
- user correction rate
|
| 59 |
+
- privacy redaction compliance
|
| 60 |
+
|
sample_200.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e956ee88f8e67916764e643c111e82ad4d1f984b5c04c81989d63d714869967c
|
| 3 |
+
size 646432529
|
valid.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7d253937e16e11c3507060f581c22c5f14cbcde5c5626053382bb68b80122f5
|
| 3 |
+
size 13188575
|