Datasets:
| pretty_name: Assembly Code Suite | |
| language: | |
| - code | |
| tags: | |
| - code | |
| - assembly | |
| - x86 | |
| - x86_64 | |
| - arm64 | |
| - riscv | |
| - low-level | |
| task_categories: | |
| - text-generation | |
| size_categories: | |
| - 10K<n<100K | |
| source_datasets: | |
| - original | |
| # NickIBrody/assembly-code-suite | |
| Assembly Code Suite is a public raw assembly corpus built from open-source repositories and selected historical git revisions. | |
| ## Splits | |
| - `train.jsonl` | |
| - `validation.jsonl` | |
| - `test.jsonl` | |
| ## Schema | |
| ```json | |
| { | |
| "id": "owner/repo:path:chunk", | |
| "text": "...", | |
| "arch": "x86_64", | |
| "syntax": "gas-att", | |
| "kind": "handwritten", | |
| "repo": "owner/repo", | |
| "path": "arch/x86/lib/memcpy_64.S", | |
| "license": "GPL-2.0", | |
| "commit": "abcdef123456", | |
| "source_url": "https://github.com/owner/repo/blob/abcdef123456/arch/x86/lib/memcpy_64.S" | |
| } | |
| ``` | |
| ## Build Summary | |
| ```json | |
| { | |
| "repos": 39, | |
| "files": 119400, | |
| "chunks": 304261, | |
| "candidates": 304261, | |
| "train": 273806, | |
| "validation": 15226, | |
| "test": 15229 | |
| } | |
| ``` | |