File size: 2,462 Bytes
5fd3bc4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
pretty_name: Samsoup GraphArch
configs:
- config_name: full
  data_files:
  - split: train
    path: full/train.jsonl
  - split: validation
    path: full/validation.jsonl
  - split: test
    path: full/test.jsonl
- config_name: subset_10k
  data_files:
  - split: train
    path: subset_10k/train.jsonl
  - split: validation
    path: subset_10k/validation.jsonl
  - split: test
    path: subset_10k/test.jsonl
---

# GraphArch

This dataset is the MO-RELISH graph architecture regression collection. Each
row contains serialized neural-network graph text and execution/benchmark
measurements from neural architecture search spaces.

## Configs And Splits

| Config | Train | Validation | Test |
| --- | ---: | ---: | ---: |
| `full` | 475,257 | 10,000 | 10,000 |
| `subset_10k` | 10,000 | 1,000 | 1,000 |

The `full` config keeps all strict-clean rows, with 10,000 validation rows and
10,000 test rows sampled deterministically and stratified by search space. The
`subset_10k` config is a deterministic 10,000/1,000/1,000 sample from the full
splits, also stratified by search space.

## Columns

Input columns:

- `source_text`: task-level context.
- `input_text`: serialized neural-network graph text.
- `reference_outputs`: empty list; this is a regression benchmark.
- `prompt_components.problem_context`: same task context as `source_text`.
- `prompt_components.input_to_evaluate_column`: points to `input_text`.
- `prompt_components.input_format`: serialized neural-network graph text.
- `prompt_components.search_space`: NAS search-space name.

Prediction targets:

- `targets.val_accuracy`: Validation accuracy reported for the neural architecture.
- `targets.flops`: Floating-point operation count for the architecture.

Retained measurements:

- `measurements.val_accuracy`: Validation accuracy reported for the neural architecture.
- `measurements.flops`: Floating-point operation count for the architecture.
- `measurements.params`: Number of trainable parameters in the architecture.

`params` is retained for analysis but is not a default prediction target because
it is usually deterministic from the architecture.

The original zero-cost-proxy metadata is not included in rows because it may
leak target values such as FLOPs, parameter count, or validation accuracy.

## Loading

```python
from datasets import load_dataset

full_ds = load_dataset("Samsoup/GraphArch", "full")
small_ds = load_dataset("Samsoup/GraphArch", "subset_10k")
```