Datasets:
File size: 966 Bytes
86ee6a1 | 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 | ---
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
}
```
|