anonymous314 commited on
Commit
4a8993d
·
verified ·
1 Parent(s): a2b3daf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +102 -3
README.md CHANGED
@@ -1,3 +1,102 @@
1
- ---
2
- license: cc
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - graph-ml
5
+ tags:
6
+ - physics
7
+ - high-energy-physics
8
+ - graph-classification
9
+ - gnn
10
+ pretty_name: Graphical Bootstrap Correlator Dataset
11
+ size_categories:
12
+ - 100G<n<1T
13
+ ---
14
+
15
+ # Graphical Bootstrap Correlator Dataset
16
+
17
+ Graph-structured dataset for binary classification of multi-loop Feynman integrals using Graph Neural Networks (GNNs). Each graph represents a denominator structure of a Feynman integral at loop orders 6–12, with the label indicating whether the integral satisfies a specific reduction criterion.
18
+
19
+ ## Dataset Structure
20
+
21
+ ```
22
+ graphical-bootstrap-correlator-dataset/
23
+ ├── data/
24
+ │ ├── den_graph_data_6.npz # Loop 6 graph data
25
+ │ ├── den_graph_data_7.npz # Loop 7 graph data
26
+ │ ├── den_graph_data_8.npz # Loop 8 graph data
27
+ │ ├── den_graph_data_9.npz # Loop 9 graph data
28
+ │ ├── den_graph_data_10.npz # Loop 10 graph data
29
+ │ ├── den_graph_data_11.npz # Loop 11 graph data
30
+ │ ├── den_graph_data_12.npz # Loop 12 graph data (full)
31
+ │ ├── den_graph_data_12_1.npz # Loop 12 graph data (split 1/20)
32
+ │ │ ...
33
+ │ ├── den_graph_data_12_20.npz # Loop 12 graph data (split 20/20)
34
+ │ ├── features_loop_6/ # Pre-computed node features, loop 6
35
+ │ ├── features_loop_7/ # Pre-computed node features, loop 7
36
+ │ ├── features_loop_8/ # Pre-computed node features, loop 8
37
+ │ ├── features_loop_9/ # Pre-computed node features, loop 9
38
+ │ ├── features_loop_10/ # Pre-computed node features, loop 10
39
+ │ └── features_loop_11/ # Pre-computed node features, loop 11
40
+ ├── embeddings/ # Learned graph embeddings from trained models
41
+ ├── models/ # Trained GNN model checkpoints (.pt files)
42
+ └── rung_rule/ # Rung rule analysis data (JSON/Parquet)
43
+ ```
44
+
45
+ ## Data Format
46
+
47
+ ### Graph data (`.npz` files)
48
+
49
+ Each `.npz` file contains the full dataset for a given loop order and can be loaded with NumPy:
50
+
51
+ ```python
52
+ import numpy as np
53
+
54
+ data = np.load("data/den_graph_data_10.npz", allow_pickle=True)
55
+ # Keys: depends on the split — typically includes edge arrays and labels
56
+ ```
57
+
58
+ Labels are binary (0 or 1).
59
+
60
+ ### Pre-computed node features (`features_loop_N/`)
61
+
62
+ Each directory contains `.npy` files with pre-computed node-level features for the corresponding loop order:
63
+
64
+ | Category | Features |
65
+ |------------|---------------------------------------------------------------------|
66
+ | Spectral | `eigen_1`–`eigen_3`, `low_eigen_1`–`low_eigen_3` |
67
+ | Structural | `degree`, `closeness`, `betweenness`, `clustering`, `pagerank` |
68
+ | Graphlet | `graphlet_3`, `graphlet_4` |
69
+ | Distance | `spd` (shortest path distances) |
70
+
71
+ ```python
72
+ import numpy as np
73
+
74
+ features = np.load("data/features_loop_10/degree.npy")
75
+ ```
76
+
77
+ ## Usage with ml-correlator
78
+
79
+ This dataset is designed for use with the [ML-Correlator](https://github.com/gdian/ML-correlator) training framework:
80
+
81
+ ```python
82
+ from ml_correlator.graph_builder import create_simple_dataset
83
+
84
+ dataset, scaler, feat_dim = create_simple_dataset(
85
+ file_ext='10',
86
+ selected_features=['low_eigen_1', 'degree', 'clustering'],
87
+ normalize=True,
88
+ data_dir='data',
89
+ )
90
+ ```
91
+
92
+ ## Models
93
+
94
+ Trained GNN checkpoints in `models/` are compatible with the `ml_correlator.architectures` module. Supported architectures: GIN, GAT, GraphTransformer (hybrid, simple, planar), GAT-GraphTransformer.
95
+
96
+ ## Rung Rule
97
+
98
+ The `rung_rule/` directory contains analysis files used to study the rung rule structure across loop transitions (6→7, 7→8, 8→9, 9→10, 10→11, 11→12).
99
+
100
+ ## License
101
+
102
+ This dataset is released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).