File size: 1,724 Bytes
4bbfbd6
 
 
 
 
 
 
 
 
 
 
 
 
 
dda39cf
 
 
 
4bbfbd6
dda39cf
 
 
4bbfbd6
dda39cf
 
 
4bbfbd6
dda39cf
 
 
4bbfbd6
dda39cf
 
 
4bbfbd6
 
 
 
dda39cf
 
4bbfbd6
 
 
dda39cf
 
14b934c
 
 
 
 
dda39cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
language: [en]
pretty_name: MemoryCD
size_categories: [100K<n<1M]
task_categories: [text-generation]
tags:
  - amazon-reviews
  - cross-domain
  - recommendation
  - memory
  - llm
  - evaluation
configs:
  - config_name: users_interactions
    data_files:
      - split: test
        path: "users/cross_domain_users_sampled.jsonl.gz"
    default: true
  - config_name: meta_personal_care
    data_files:
      - split: test
        path: "meta/Beauty_and_Personal_Care.jsonl.gz"
  - config_name: meta_books
    data_files:
      - split: test
        path: "meta/Books.jsonl.gz"
  - config_name: meta_electronics
    data_files:
      - split: test
        path: "meta/Electronics.jsonl.gz"
  - config_name: meta_home
    data_files:
      - split: test
        path: "meta/Home_and_Kitchen.jsonl.gz"
---

# MemoryCD

Filtered cross-domain subset of Amazon Reviews 2023 for memory-augmented LLM
evaluation. All configs expose a single `test` split (evaluation only).

## Contents

| Config | Records |
|---|---:|
| `users_interactions` | 323 users |
| `meta_personal_care` | 33,475 items |
| `meta_books` | 48,054 items |
| `meta_electronics` | 25,441 items |
| `meta_home` | 60,900 items |

The 4 meta files contain exactly the items referenced by the 323 users
(167,870 unique `parent_asin`, 100% coverage). The `price` field is
normalized to `float | null` across all meta files.

## Quick start

```python
from datasets import load_dataset
users = load_dataset("WZDavid/MemoryCD", "users_interactions", split="test")
books = load_dataset("WZDavid/MemoryCD", "meta_books", split="test")
```

## Source

Derived from [McAuley-Lab/Amazon-Reviews-2023](https://huggingface.co/datasets/McAuley-Lab/Amazon-Reviews-2023).