Add metadata for repo root
Browse files- README.md +22 -0
- dataset_manifest.json +30 -0
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# YeMoKoo/flamedata
|
| 2 |
+
|
| 3 |
+
Exact tokenized train/test splits used for the FLAME-MoE continual-learning experiments.
|
| 4 |
+
|
| 5 |
+
Repository layout:
|
| 6 |
+
- `wiki/train`
|
| 7 |
+
- `wiki/test`
|
| 8 |
+
- `code/train`
|
| 9 |
+
- `code/test`
|
| 10 |
+
|
| 11 |
+
Dataset entries:
|
| 12 |
+
|
| 13 |
+
| Folder | Summary |
|
| 14 |
+
| --- | --- |
|
| 15 |
+
| `wiki/train` | Exact wiki train split: first 1800 steps worth of tokens. |
|
| 16 |
+
| `wiki/test` | Exact wiki test split: remainder after the first 1800 steps. |
|
| 17 |
+
| `code/train` | Exact code train split: first 1800 steps worth of tokens. |
|
| 18 |
+
| `code/test` | Exact code test split trimmed to match the wiki test token count. |
|
| 19 |
+
|
| 20 |
+
These are Megatron indexed-dataset artifacts, not Hugging Face `datasets` parquet exports.
|
| 21 |
+
|
| 22 |
+
Source code: https://github.com/YeMoKoo/FLAME-MoE
|
dataset_manifest.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"key": "wiki_train",
|
| 4 |
+
"title": "Wiki Train Exact",
|
| 5 |
+
"source_dir": ".local/dataset/wikipedia-full/tokenized/EleutherAI/pythia-12b-step1800-train-exact",
|
| 6 |
+
"path_in_repo": "wiki/train",
|
| 7 |
+
"summary": "Exact wiki train split: first 1800 steps worth of tokens."
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"key": "wiki_test",
|
| 11 |
+
"title": "Wiki Test Full Remainder Exact",
|
| 12 |
+
"source_dir": ".local/dataset/wikipedia-full/tokenized/EleutherAI/pythia-12b-step1800-test-fullremainder-exact",
|
| 13 |
+
"path_in_repo": "wiki/test",
|
| 14 |
+
"summary": "Exact wiki test split: remainder after the first 1800 steps."
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"key": "code_train",
|
| 18 |
+
"title": "Code Train Exact",
|
| 19 |
+
"source_dir": ".local/dataset/python-code-full/tokenized/EleutherAI/pythia-12b-step1800-train-exact",
|
| 20 |
+
"path_in_repo": "code/train",
|
| 21 |
+
"summary": "Exact code train split: first 1800 steps worth of tokens."
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"key": "code_test",
|
| 25 |
+
"title": "Code Test Match Wiki Exact",
|
| 26 |
+
"source_dir": ".local/dataset/python-code-full/tokenized/EleutherAI/pythia-12b-step1800-test-matchwiki-exact",
|
| 27 |
+
"path_in_repo": "code/test",
|
| 28 |
+
"summary": "Exact code test split trimmed to match the wiki test token count."
|
| 29 |
+
}
|
| 30 |
+
]
|