Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
annotations_creators: []
|
| 3 |
+
language: [en]
|
| 4 |
+
license: other
|
| 5 |
+
pretty_name: LIXINYI33/longmemeval-s
|
| 6 |
+
tags:
|
| 7 |
+
- longmemeval
|
| 8 |
+
- dialog
|
| 9 |
+
- memory
|
| 10 |
+
- json
|
| 11 |
+
size_categories: []
|
| 12 |
+
task_categories:
|
| 13 |
+
- question-answering
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# LIXINYI33/longmemeval-s
|
| 17 |
+
|
| 18 |
+
This dataset repository contains JSON files compatible with LongMemEval-like experiments.
|
| 19 |
+
|
| 20 |
+
Uploaded files:
|
| 21 |
+
- longmemeval_s_cleaned.json
|
| 22 |
+
|
| 23 |
+
Notes:
|
| 24 |
+
- This repo was created/updated via a utility script and is intended for personal experiments.
|
| 25 |
+
- JSON files can be loaded directly with the `datasets` library using the json builder, e.g.:
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from datasets import load_dataset
|
| 29 |
+
# load a single file from the Hub
|
| 30 |
+
# replace <file.json> with your target file name
|
| 31 |
+
# requires `datasets>=2.14` for hf:// scheme
|
| 32 |
+
url = f"hf://datasets/LIXINYI33/longmemeval-s/<file.json>"
|
| 33 |
+
raw = load_dataset("json", data_files=url)
|
| 34 |
+
```
|
| 35 |
+
|
| 36 |
+
Provenance:
|
| 37 |
+
- Derived from local copies of LongMemEval cleaned files.
|