Datasets:
Upload folder using huggingface_hub
Browse files- .gitattributes +3 -0
- README.md +60 -0
- test.jsonl +3 -0
- train.jsonl +3 -0
- validation.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
test.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
train.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
validation.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: Assembly Code Suite
|
| 3 |
+
language:
|
| 4 |
+
- code
|
| 5 |
+
tags:
|
| 6 |
+
- code
|
| 7 |
+
- assembly
|
| 8 |
+
- x86
|
| 9 |
+
- x86_64
|
| 10 |
+
- arm64
|
| 11 |
+
- riscv
|
| 12 |
+
- low-level
|
| 13 |
+
task_categories:
|
| 14 |
+
- text-generation
|
| 15 |
+
size_categories:
|
| 16 |
+
- 10K<n<100K
|
| 17 |
+
source_datasets:
|
| 18 |
+
- original
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# NickIBrody/assembly-code-suite
|
| 22 |
+
|
| 23 |
+
Assembly Code Suite is a public raw assembly corpus built from open-source repositories and selected historical git revisions.
|
| 24 |
+
|
| 25 |
+
## Splits
|
| 26 |
+
|
| 27 |
+
- `train.jsonl`
|
| 28 |
+
- `validation.jsonl`
|
| 29 |
+
- `test.jsonl`
|
| 30 |
+
|
| 31 |
+
## Schema
|
| 32 |
+
|
| 33 |
+
```json
|
| 34 |
+
{
|
| 35 |
+
"id": "owner/repo:path:chunk",
|
| 36 |
+
"text": "...",
|
| 37 |
+
"arch": "x86_64",
|
| 38 |
+
"syntax": "gas-att",
|
| 39 |
+
"kind": "handwritten",
|
| 40 |
+
"repo": "owner/repo",
|
| 41 |
+
"path": "arch/x86/lib/memcpy_64.S",
|
| 42 |
+
"license": "GPL-2.0",
|
| 43 |
+
"commit": "abcdef123456",
|
| 44 |
+
"source_url": "https://github.com/owner/repo/blob/abcdef123456/arch/x86/lib/memcpy_64.S"
|
| 45 |
+
}
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## Build Summary
|
| 49 |
+
|
| 50 |
+
```json
|
| 51 |
+
{
|
| 52 |
+
"repos": 39,
|
| 53 |
+
"files": 119400,
|
| 54 |
+
"chunks": 304261,
|
| 55 |
+
"candidates": 304261,
|
| 56 |
+
"train": 273806,
|
| 57 |
+
"validation": 15226,
|
| 58 |
+
"test": 15229
|
| 59 |
+
}
|
| 60 |
+
```
|
test.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fc138486c934517675fb455a3d8ee95265a7f9f8fe0c2fdb9bbeeeb98c5a9dd
|
| 3 |
+
size 29004382
|
train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0a49f98ee52f367e8e613a481ecc2f320a868805754ff3e308d34c22517a14c
|
| 3 |
+
size 572358501
|
validation.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13ae65d30d6ba4ea97b0b5ee1ef457769269428ca916d4f71014bee98e37f623
|
| 3 |
+
size 34034845
|