Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,38 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
```text
|
| 6 |
-
|
| 7 |
-
datasets/ Local datasets
|
| 8 |
registry/ JSON registries for benchmark runs, metrics, configs, and checkpoints
|
| 9 |
train/ Training scripts and configuration files
|
| 10 |
models/ Model definition files
|
|
@@ -12,26 +40,50 @@ benchmark_v2/
|
|
| 12 |
collect/ Collected checkpoint trajectories
|
| 13 |
```
|
| 14 |
|
| 15 |
-
##
|
|
|
|
|
|
|
| 16 |
|
| 17 |
- Image classification
|
| 18 |
-
- Text classification
|
| 19 |
- Image segmentation
|
| 20 |
-
-
|
| 21 |
-
-
|
| 22 |
-
|
| 23 |
-
The main registry files are:
|
| 24 |
-
|
| 25 |
-
```text
|
| 26 |
-
registry/image_classification.json
|
| 27 |
-
registry/text_classification.json
|
| 28 |
-
registry/image_segmentation.json
|
| 29 |
-
registry/reinforcement_learning.json
|
| 30 |
-
```
|
| 31 |
|
| 32 |
## Artifacts
|
| 33 |
|
| 34 |
- Trained checkpoints: `zoo/**/*.pth`
|
| 35 |
-
- Collected
|
| 36 |
- Training configs: `train/**/config/*.json`
|
| 37 |
-
- Model
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
pretty_name: NeWGen-Bench
|
| 4 |
+
size_categories:
|
| 5 |
+
- 100K<n<1M
|
| 6 |
+
task_categories:
|
| 7 |
+
- other
|
| 8 |
+
tags:
|
| 9 |
+
- neural-network-weights
|
| 10 |
+
- weight-generation
|
| 11 |
+
- parameter-generation
|
| 12 |
+
- benchmark
|
| 13 |
+
- model-zoo
|
| 14 |
+
configs:
|
| 15 |
+
- config_name: default
|
| 16 |
+
data_files:
|
| 17 |
+
- split: train
|
| 18 |
+
path: metadata.parquet
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
# NeWGen-Bench
|
| 22 |
+
|
| 23 |
+
A benchmark for neural network parameter generation. The release contains
|
| 24 |
+
trained checkpoints across multiple architectures, datasets, and task
|
| 25 |
+
domains, each paired with structured metadata describing the architecture,
|
| 26 |
+
training data, hyperparameters, and final performance.
|
| 27 |
+
|
| 28 |
+
This dataset accompanies an anonymous submission to NeurIPS 2026
|
| 29 |
+
Evaluations and Datasets Track.
|
| 30 |
+
|
| 31 |
+
## Repository Structure
|
| 32 |
|
| 33 |
```text
|
| 34 |
+
<root>/
|
| 35 |
+
datasets/ Local datasets and dataset caches
|
| 36 |
registry/ JSON registries for benchmark runs, metrics, configs, and checkpoints
|
| 37 |
train/ Training scripts and configuration files
|
| 38 |
models/ Model definition files
|
|
|
|
| 40 |
collect/ Collected checkpoint trajectories
|
| 41 |
```
|
| 42 |
|
| 43 |
+
## Task Domains
|
| 44 |
+
|
| 45 |
+
The benchmark spans the following task domains:
|
| 46 |
|
| 47 |
- Image classification
|
|
|
|
| 48 |
- Image segmentation
|
| 49 |
+
- Text classification
|
| 50 |
+
- LLM adaptation
|
| 51 |
+
- VLM adaptation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
## Artifacts
|
| 54 |
|
| 55 |
- Trained checkpoints: `zoo/**/*.pth`
|
| 56 |
+
- Collected checkpoint trajectories: `collect/**/*.pth`
|
| 57 |
- Training configs: `train/**/config/*.json`
|
| 58 |
+
- Model definitions: `models/*.py`
|
| 59 |
+
- Per-checkpoint metadata: `metadata.parquet`
|
| 60 |
+
|
| 61 |
+
## Usage
|
| 62 |
+
|
| 63 |
+
```python
|
| 64 |
+
from datasets import load_dataset
|
| 65 |
+
|
| 66 |
+
ds = load_dataset("Anonymous1Researcher/NeWGen-Bench")
|
| 67 |
+
print(ds["train"][0])
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
Or load directly with pandas:
|
| 71 |
+
|
| 72 |
+
```python
|
| 73 |
+
import pandas as pd
|
| 74 |
+
|
| 75 |
+
df = pd.read_parquet(
|
| 76 |
+
"hf://datasets/Anonymous1Researcher/NeWGen-Bench/metadata.parquet"
|
| 77 |
+
)
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## Status
|
| 81 |
+
|
| 82 |
+
This release contains the metadata table. The full collection of trained
|
| 83 |
+
checkpoints will be made available before the camera-ready deadline.
|
| 84 |
+
|
| 85 |
+
## License
|
| 86 |
+
|
| 87 |
+
Released under CC BY 4.0. Individual checkpoints are derived from public
|
| 88 |
+
training datasets, each governed by its own license; downstream users
|
| 89 |
+
should comply with the licenses of the underlying training data.
|