mood-anonymous commited on
Commit
d30990c
·
verified ·
1 Parent(s): c5908c2

v2.4: README at sample-subdirectory level explaining how the representative sample was created (per NeurIPS E&D Dataset Large URL guideline)

Browse files
embeddings/matbench_dielectric/README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Representative sample for NeurIPS Evaluations & Datasets review
2
+
3
+ This directory is the representative sample of the MOOD benchmark
4
+ referenced in the OpenReview submission's "Dataset Large URL" field.
5
+ The full release is ~9.2 GB; per the NeurIPS E&D guidelines for
6
+ datasets > 4 GB, a smaller sample is provided so reviewers can
7
+ inspect data quality without downloading the full archive.
8
+
9
+ ## What's in this directory
10
+
11
+ Penultimate-layer GNN embeddings for the **`matbench_dielectric`** task
12
+ across all 4 GNN architectures and all 14 retained OOD splits. Each
13
+ `<arch>/<split>/fold_0/` subdirectory contains:
14
+
15
+ | File | Shape | Description |
16
+ |---|---|---|
17
+ | `train.npy` | `(n_train, d)` | Training-pool embeddings (raw, not L2-normalized) |
18
+ | `id_test.npy` | `(n_id_test, d)` | ID test-pool embeddings |
19
+ | `ood_test.npy` | `(n_ood_test, d)` | OOD test-pool embeddings |
20
+ | `train_pred.npy` | `(n_train,)` | GNN prediction on training pool |
21
+ | `id_test_pred.npy` | `(n_id_test,)` | GNN prediction on ID test |
22
+ | `ood_test_pred.npy` | `(n_ood_test,)` | GNN prediction on OOD test |
23
+ | `train_targets.npy` | `(n_train,)` | True regression target |
24
+ | `id_test_targets.npy` | `(n_id_test,)` | True regression target |
25
+ | `ood_test_targets.npy` | `(n_ood_test,)` | True regression target |
26
+
27
+ Embedding dimension `d`: 256 (ALIGNN), 128 (CGCNN), 64 (SchNet), 64 (DimeNet++).
28
+
29
+ ## How this sample was created
30
+
31
+ The `dielectric` task was selected from the 5 retained MatBench tasks
32
+ because:
33
+
34
+ 1. **Smallest by disk** among method-bottlenecked datasets (~132 MB
35
+ for embeddings, vs. 328 MB / 339 MB / 32 MB / 328 MB for the others).
36
+ 2. **Full benchmark structure preserved**: every GNN architecture and
37
+ every retained OOD split is represented, so the sample exercises the
38
+ full evaluation matrix for one task — a reviewer can drop in a new
39
+ post-hoc detector on any (arch, split) cell here and reproduce the
40
+ layout used for the headline AUROC table.
41
+ 3. **Method-bottlenecked regime**: dielectric is one of the two
42
+ method-bottlenecked datasets in the benchmark (the other is
43
+ `log_gvrh`), so a reviewer inspecting data quality sees nontrivial
44
+ ID/OOD signal in the embeddings rather than the chance-level
45
+ embeddings characteristic of the encoder-bottlenecked regime.
46
+
47
+ ## Layout in the full release
48
+
49
+ The other 4 tasks (`matbench_log_gvrh`, `matbench_log_kvrh`,
50
+ `matbench_perovskites`, `matbench_phonons`) follow the identical
51
+ directory structure in the full release. Total full-release size for
52
+ embeddings alone is ~1.1 GB; with checkpoints / flow models / probes /
53
+ results / risk-coverage curves added, the full release is ~9.2 GB.
54
+
55
+ ## Quick verification
56
+
57
+ ```python
58
+ import numpy as np
59
+ from huggingface_hub import hf_hub_download
60
+
61
+ REPO = "mood-anonymous/mood-benchmark"
62
+
63
+ z = np.load(hf_hub_download(
64
+ REPO,
65
+ filename="embeddings/matbench_dielectric/alignn/comp_halide/fold_0/train.npy",
66
+ repo_type="dataset",
67
+ ))
68
+ print(z.shape, z.dtype) # (3155, 256) float32
69
+ ```
70
+
71
+ ## Full dataset README
72
+
73
+ For the complete benchmark documentation, intended uses, citation,
74
+ license, and quick-start examples covering all artifact types
75
+ (embeddings, checkpoints, flow models, probes, results, risk-coverage),
76
+ see the [main README](../../README.md) at the dataset root.