Populate MO-RELISH GraphArch dataset
Browse files- .gitattributes +6 -0
- README.md +76 -0
- full/test.jsonl +3 -0
- full/train.jsonl +3 -0
- full/validation.jsonl +3 -0
- manifest.json +180 -0
- subset_10k/test.jsonl +3 -0
- subset_10k/train.jsonl +3 -0
- subset_10k/validation.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,9 @@ 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 |
+
full/test.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
full/train.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
full/validation.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
subset_10k/test.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
subset_10k/train.jsonl filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
subset_10k/validation.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: Samsoup GraphArch
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: full
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: full/train.jsonl
|
| 8 |
+
- split: validation
|
| 9 |
+
path: full/validation.jsonl
|
| 10 |
+
- split: test
|
| 11 |
+
path: full/test.jsonl
|
| 12 |
+
- config_name: subset_10k
|
| 13 |
+
data_files:
|
| 14 |
+
- split: train
|
| 15 |
+
path: subset_10k/train.jsonl
|
| 16 |
+
- split: validation
|
| 17 |
+
path: subset_10k/validation.jsonl
|
| 18 |
+
- split: test
|
| 19 |
+
path: subset_10k/test.jsonl
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# GraphArch
|
| 23 |
+
|
| 24 |
+
This dataset is the MO-RELISH graph architecture regression collection. Each
|
| 25 |
+
row contains serialized neural-network graph text and execution/benchmark
|
| 26 |
+
measurements from neural architecture search spaces.
|
| 27 |
+
|
| 28 |
+
## Configs And Splits
|
| 29 |
+
|
| 30 |
+
| Config | Train | Validation | Test |
|
| 31 |
+
| --- | ---: | ---: | ---: |
|
| 32 |
+
| `full` | 475,257 | 10,000 | 10,000 |
|
| 33 |
+
| `subset_10k` | 10,000 | 1,000 | 1,000 |
|
| 34 |
+
|
| 35 |
+
The `full` config keeps all strict-clean rows, with 10,000 validation rows and
|
| 36 |
+
10,000 test rows sampled deterministically and stratified by search space. The
|
| 37 |
+
`subset_10k` config is a deterministic 10,000/1,000/1,000 sample from the full
|
| 38 |
+
splits, also stratified by search space.
|
| 39 |
+
|
| 40 |
+
## Columns
|
| 41 |
+
|
| 42 |
+
Input columns:
|
| 43 |
+
|
| 44 |
+
- `source_text`: task-level context.
|
| 45 |
+
- `input_text`: serialized neural-network graph text.
|
| 46 |
+
- `reference_outputs`: empty list; this is a regression benchmark.
|
| 47 |
+
- `prompt_components.problem_context`: same task context as `source_text`.
|
| 48 |
+
- `prompt_components.input_to_evaluate_column`: points to `input_text`.
|
| 49 |
+
- `prompt_components.input_format`: serialized neural-network graph text.
|
| 50 |
+
- `prompt_components.search_space`: NAS search-space name.
|
| 51 |
+
|
| 52 |
+
Prediction targets:
|
| 53 |
+
|
| 54 |
+
- `targets.val_accuracy`: Validation accuracy reported for the neural architecture.
|
| 55 |
+
- `targets.flops`: Floating-point operation count for the architecture.
|
| 56 |
+
|
| 57 |
+
Retained measurements:
|
| 58 |
+
|
| 59 |
+
- `measurements.val_accuracy`: Validation accuracy reported for the neural architecture.
|
| 60 |
+
- `measurements.flops`: Floating-point operation count for the architecture.
|
| 61 |
+
- `measurements.params`: Number of trainable parameters in the architecture.
|
| 62 |
+
|
| 63 |
+
`params` is retained for analysis but is not a default prediction target because
|
| 64 |
+
it is usually deterministic from the architecture.
|
| 65 |
+
|
| 66 |
+
The original zero-cost-proxy metadata is not included in rows because it may
|
| 67 |
+
leak target values such as FLOPs, parameter count, or validation accuracy.
|
| 68 |
+
|
| 69 |
+
## Loading
|
| 70 |
+
|
| 71 |
+
```python
|
| 72 |
+
from datasets import load_dataset
|
| 73 |
+
|
| 74 |
+
full_ds = load_dataset("Samsoup/GraphArch", "full")
|
| 75 |
+
small_ds = load_dataset("Samsoup/GraphArch", "subset_10k")
|
| 76 |
+
```
|
full/test.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cac2acaddaa475fc75aecfa6fb6cef6456e8f86fec37f7dbc1ff66d3c2f33a1
|
| 3 |
+
size 458421871
|
full/train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:193de017309e3512454b46d9b45e7884334022de71106e217a0133f597279abb
|
| 3 |
+
size 21775067679
|
full/validation.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7c80d4eb6a23476845a4a450e3964be87093a0bcaf935141c83a44feffe0993
|
| 3 |
+
size 459511575
|
manifest.json
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"clean_rows": 495257,
|
| 3 |
+
"configs": {
|
| 4 |
+
"full": {
|
| 5 |
+
"config_name": "full",
|
| 6 |
+
"files": {
|
| 7 |
+
"test": "full/test.jsonl",
|
| 8 |
+
"train": "full/train.jsonl",
|
| 9 |
+
"validation": "full/validation.jsonl"
|
| 10 |
+
},
|
| 11 |
+
"measurements_retained": [
|
| 12 |
+
"val_accuracy",
|
| 13 |
+
"flops",
|
| 14 |
+
"params"
|
| 15 |
+
],
|
| 16 |
+
"split_counts": {
|
| 17 |
+
"test": 10000,
|
| 18 |
+
"train": 475257,
|
| 19 |
+
"validation": 10000
|
| 20 |
+
},
|
| 21 |
+
"split_space_counts": {
|
| 22 |
+
"test": {
|
| 23 |
+
"Amoeba": 101,
|
| 24 |
+
"DARTS": 101,
|
| 25 |
+
"DARTS_fix-w-d": 101,
|
| 26 |
+
"DARTS_lr-wd": 94,
|
| 27 |
+
"ENAS": 100,
|
| 28 |
+
"ENAS_fix-w-d": 100,
|
| 29 |
+
"Hiaml": 93,
|
| 30 |
+
"Inception": 12,
|
| 31 |
+
"NASBench101": 8554,
|
| 32 |
+
"NASBench201": 315,
|
| 33 |
+
"NASNet": 98,
|
| 34 |
+
"PNAS": 100,
|
| 35 |
+
"PNAS_fix-w-d": 92,
|
| 36 |
+
"TwoPath": 139
|
| 37 |
+
},
|
| 38 |
+
"train": {
|
| 39 |
+
"Amoeba": 4775,
|
| 40 |
+
"DARTS": 4790,
|
| 41 |
+
"DARTS_fix-w-d": 4797,
|
| 42 |
+
"DARTS_lr-wd": 4467,
|
| 43 |
+
"ENAS": 4750,
|
| 44 |
+
"ENAS_fix-w-d": 4775,
|
| 45 |
+
"Hiaml": 4443,
|
| 46 |
+
"Inception": 556,
|
| 47 |
+
"NASBench101": 406516,
|
| 48 |
+
"NASBench201": 14995,
|
| 49 |
+
"NASNet": 4641,
|
| 50 |
+
"PNAS": 4775,
|
| 51 |
+
"PNAS_fix-w-d": 4365,
|
| 52 |
+
"TwoPath": 6612
|
| 53 |
+
},
|
| 54 |
+
"validation": {
|
| 55 |
+
"Amoeba": 101,
|
| 56 |
+
"DARTS": 101,
|
| 57 |
+
"DARTS_fix-w-d": 101,
|
| 58 |
+
"DARTS_lr-wd": 94,
|
| 59 |
+
"ENAS": 100,
|
| 60 |
+
"ENAS_fix-w-d": 100,
|
| 61 |
+
"Hiaml": 93,
|
| 62 |
+
"Inception": 12,
|
| 63 |
+
"NASBench101": 8554,
|
| 64 |
+
"NASBench201": 315,
|
| 65 |
+
"NASNet": 98,
|
| 66 |
+
"PNAS": 100,
|
| 67 |
+
"PNAS_fix-w-d": 92,
|
| 68 |
+
"TwoPath": 139
|
| 69 |
+
}
|
| 70 |
+
},
|
| 71 |
+
"targets_predicted": [
|
| 72 |
+
"val_accuracy",
|
| 73 |
+
"flops"
|
| 74 |
+
]
|
| 75 |
+
},
|
| 76 |
+
"subset_10k": {
|
| 77 |
+
"config_name": "subset_10k",
|
| 78 |
+
"files": {
|
| 79 |
+
"test": "subset_10k/test.jsonl",
|
| 80 |
+
"train": "subset_10k/train.jsonl",
|
| 81 |
+
"validation": "subset_10k/validation.jsonl"
|
| 82 |
+
},
|
| 83 |
+
"measurements_retained": [
|
| 84 |
+
"val_accuracy",
|
| 85 |
+
"flops",
|
| 86 |
+
"params"
|
| 87 |
+
],
|
| 88 |
+
"split_counts": {
|
| 89 |
+
"test": 1000,
|
| 90 |
+
"train": 10000,
|
| 91 |
+
"validation": 1000
|
| 92 |
+
},
|
| 93 |
+
"split_space_counts": {
|
| 94 |
+
"test": {
|
| 95 |
+
"Amoeba": 10,
|
| 96 |
+
"DARTS": 10,
|
| 97 |
+
"DARTS_fix-w-d": 10,
|
| 98 |
+
"DARTS_lr-wd": 10,
|
| 99 |
+
"ENAS": 10,
|
| 100 |
+
"ENAS_fix-w-d": 10,
|
| 101 |
+
"Hiaml": 9,
|
| 102 |
+
"Inception": 1,
|
| 103 |
+
"NASBench101": 855,
|
| 104 |
+
"NASBench201": 32,
|
| 105 |
+
"NASNet": 10,
|
| 106 |
+
"PNAS": 10,
|
| 107 |
+
"PNAS_fix-w-d": 9,
|
| 108 |
+
"TwoPath": 14
|
| 109 |
+
},
|
| 110 |
+
"train": {
|
| 111 |
+
"Amoeba": 100,
|
| 112 |
+
"DARTS": 101,
|
| 113 |
+
"DARTS_fix-w-d": 101,
|
| 114 |
+
"DARTS_lr-wd": 94,
|
| 115 |
+
"ENAS": 100,
|
| 116 |
+
"ENAS_fix-w-d": 100,
|
| 117 |
+
"Hiaml": 93,
|
| 118 |
+
"Inception": 12,
|
| 119 |
+
"NASBench101": 8554,
|
| 120 |
+
"NASBench201": 316,
|
| 121 |
+
"NASNet": 98,
|
| 122 |
+
"PNAS": 100,
|
| 123 |
+
"PNAS_fix-w-d": 92,
|
| 124 |
+
"TwoPath": 139
|
| 125 |
+
},
|
| 126 |
+
"validation": {
|
| 127 |
+
"Amoeba": 10,
|
| 128 |
+
"DARTS": 10,
|
| 129 |
+
"DARTS_fix-w-d": 10,
|
| 130 |
+
"DARTS_lr-wd": 10,
|
| 131 |
+
"ENAS": 10,
|
| 132 |
+
"ENAS_fix-w-d": 10,
|
| 133 |
+
"Hiaml": 9,
|
| 134 |
+
"Inception": 1,
|
| 135 |
+
"NASBench101": 855,
|
| 136 |
+
"NASBench201": 32,
|
| 137 |
+
"NASNet": 10,
|
| 138 |
+
"PNAS": 10,
|
| 139 |
+
"PNAS_fix-w-d": 9,
|
| 140 |
+
"TwoPath": 14
|
| 141 |
+
}
|
| 142 |
+
},
|
| 143 |
+
"targets_predicted": [
|
| 144 |
+
"val_accuracy",
|
| 145 |
+
"flops"
|
| 146 |
+
]
|
| 147 |
+
}
|
| 148 |
+
},
|
| 149 |
+
"dataset_family": "GraphArch",
|
| 150 |
+
"host": "huggingface",
|
| 151 |
+
"measurement_descriptions": {
|
| 152 |
+
"flops": "Floating-point operation count for the architecture.",
|
| 153 |
+
"params": "Number of trainable parameters in the architecture.",
|
| 154 |
+
"val_accuracy": "Validation accuracy reported for the neural architecture."
|
| 155 |
+
},
|
| 156 |
+
"measurements_retained": [
|
| 157 |
+
"val_accuracy",
|
| 158 |
+
"flops",
|
| 159 |
+
"params"
|
| 160 |
+
],
|
| 161 |
+
"metadata_policy": "Original zero-cost-proxy metadata is excluded from staged rows to avoid target leakage.",
|
| 162 |
+
"namespace": "Samsoup",
|
| 163 |
+
"repo_name": "GraphArch",
|
| 164 |
+
"source_file": "/home/samsoup/Work/phd-writing-hub/projects/MO-RELISH/data/grapharch_regression/data.parquet",
|
| 165 |
+
"split_names": [
|
| 166 |
+
"train",
|
| 167 |
+
"validation",
|
| 168 |
+
"test"
|
| 169 |
+
],
|
| 170 |
+
"split_policy": "Strict-clean rows only; full config uses 10,000 validation and 10,000 test rows stratified by search space, with all remaining rows assigned to training.",
|
| 171 |
+
"split_seed": "mo-relish-grapharch-v1",
|
| 172 |
+
"target_descriptions": {
|
| 173 |
+
"flops": "Floating-point operation count for the architecture.",
|
| 174 |
+
"val_accuracy": "Validation accuracy reported for the neural architecture."
|
| 175 |
+
},
|
| 176 |
+
"targets_predicted": [
|
| 177 |
+
"val_accuracy",
|
| 178 |
+
"flops"
|
| 179 |
+
]
|
| 180 |
+
}
|
subset_10k/test.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9688e3ee796446b24c3b5c863d2a7965080a9d9dcc14795bf83c784896f214ae
|
| 3 |
+
size 45409805
|
subset_10k/train.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4e9e96cafaad58f50417173423a8037df5da0038e70e7857bfe8f5e4002c740
|
| 3 |
+
size 459470449
|
subset_10k/validation.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:085a121fd5c4d35fc4211a3a56e1dcbdb96e734461b4a2e74766f96ad3adb0ed
|
| 3 |
+
size 46069816
|