Datasets:

Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
ACDRepo commited on
Commit
3cccfb6
·
verified ·
1 Parent(s): 7ac84c9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +144 -3
README.md CHANGED
@@ -1,3 +1,144 @@
1
- ---
2
- license: cc-by-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-2.0
3
+ ---
4
+
5
+ # Dataset Card for Characters of Irreducible Representations of the Symmetric Group, \\(S_n\\), n = 22
6
+
7
+ Weaving patterns are \\(n \times n−1\\)-matrices with \\(\{1, 2, . . . , n\}\\)-
8
+ entries introduced by \[1\] to study the number of reduced decompositions of the
9
+ permutation \\(\sigma = n\; n − 1 \;\dots\; 1\\) up to commutation equivalence. The number
10
+ of such objects also counts the number of parallel sorting
11
+ networks, the number of rhombic tilings of regular polygons, and is connected to
12
+ the study of the higher Bruhat orders \[2\]. An \\(O(n^2)\\) algorithm for determining
13
+ if a given \\(\{1, 2, . . . , n\}\\)-matrix is a valid weaving pattern
14
+ exists but gives no additional insight into the structure of
15
+ weaving patterns and correspondingly the asymptotics of
16
+ reduced decompositions. The enumeration of reduced decompositions
17
+ up to commutation equivalence has been studied by many including
18
+ Knuth and Stanley. An exact formula is likely out of reach,
19
+ so asymptotic upper and lower bounds are of great interest.
20
+ ML models that can detect necessary or sufficient conditions
21
+ for a matrix to be a valid weaving pattern have the potential
22
+ to lead to substantial improvements in the upper bound.
23
+
24
+ Each dataset is a mixture of enriched weaving patterns and
25
+ non-weaving pattern matrices with \\(\{1, 2, . . . , n\}\\)-entries.
26
+
27
+ ## Dataset Details
28
+
29
+ Weaving patterns of size \\(n \times n − 1\\) are a special type of matrix containing
30
+ entries in \\(\{1, 2, . . . , n\}\\). They correspond to representations of the
31
+ longest word permutation of \\(n\\) elements (the permutation that sends
32
+ \\(1 \mapsto n\\), \\(2 \mapsto n − 1\\), etc.). This
33
+ task involves trying to identify weaving patterns among matrices that look like weaving patterns but are not.
34
+ Each matrix is stored on a single line in row-major format. For instance,
35
+
36
+ `(0, 1, 2, 3, 3, 2, 3, 4, 2, 3, 2, 1, 5, 4, 3, 2)`
37
+
38
+ The datasets can also be found [here](https://drive.google.com/file/d/15AHAn9NnC7crzG_8BnaH3pp1aOGUUniV/view?usp=sharing).
39
+ Data loaders can be found [here](https://github.com/pnnl/ML4AlgComb/tree/master/weaving_patterns).
40
+
41
+ **Statistics**
42
+ | | Weaving patterns | Non-weaving patterns |
43
+ |----------|----------|---------------|
44
+ | Train | 634 | 1,116 |
45
+ | Test | 275 | 467 |
46
+
47
+ This dataset is small, we encourage users to also look at the dataset for \\(n = 7\\).
48
+
49
+ **Math question:** Find an algorithm or set of rules that can efficiently distinguish between
50
+ weaving pattern matrices and non-weaving pattern matrices. This should be more efficient than the
51
+ \\(O(n^2\\) algorithm that can be found in the references above.
52
+
53
+ **ML task:** Train a model to classify whether a \\({1, 2, . . . , n\}\\)-
54
+ matrix is a weaving pattern or not. This task is framed as
55
+ binary classification. Extract mathematical insights from a performant model.
56
+
57
+ If a successful model is trained, it would be interesting to understand whether the model has
58
+ learned an existing algorithm or whether it has discovered something new.
59
+
60
+ ## Small model performance
61
+
62
+ We provide some basic baselines for this task. Benchmarking details can be found in the associated paper.
63
+
64
+ | Size | Logistic regression | MLP | Transformer | Guessing training label mean |
65
+ |----------|----------|-----------|------------|------------|
66
+ | \\(n= 6\\) | \\(70.4\%\\) | \\(86.1 \% \pm 0.2\%\\) | \\(85.9\% \pm 2.3\%\\)| \\(63.3\%\\) |
67
+
68
+ The \\(\pm\\) signs indicate 95% confidence intervals from random weight initialization and training.
69
+
70
+ - **Curated by:** Herman Chau
71
+ - **Funded by:** Pacific Northwest National Laboratory
72
+ - **Language(s) (NLP):** NA
73
+ - **License:** CC-by-2.0
74
+
75
+ ### Dataset Sources
76
+
77
+ Data generation scripts can be found [here](https://github.com/pnnl/ML4AlgComb/tree/master/symmetric_group_character).
78
+
79
+ - **Repository:** [ACD Repo](https://github.com/pnnl/ML4AlgComb/tree/master/weaving_patterns)
80
+
81
+ ## Uses
82
+
83
+ This dataset was generated to study ML model's ability yield insight on an open
84
+ problem in algebraic combinatorics, specifically, the problem of better understanding commutation
85
+ equivalent representations of reduced words coresponding to the longest permutation.
86
+
87
+ ### Direct Use
88
+
89
+ We use this dataset for a classification task distinguishing between weaving and non-weaving patterns.
90
+
91
+ ### Out-of-Scope Use
92
+
93
+ None.
94
+
95
+ ## Dataset Structure
96
+
97
+ Each matrix is stored on a single line in row-major format. For instance,
98
+
99
+ `(0, 1, 2, 3, 3, 2, 3, 4, 2, 3, 2, 1, 5, 4, 3, 2)`
100
+
101
+ ## Dataset Creation
102
+
103
+ Data generation scripts can be found
104
+ [here](https://github.com/pnnl/ML4AlgComb/tree/master/weaving_patterns).
105
+
106
+ ### Curation Rationale
107
+
108
+ This dataset was generated as a test of current AI system's ability to advance
109
+ research mathematics.
110
+
111
+ #### Who are the source data producers?
112
+
113
+ Herman Chau wrote code to generate this dataset.
114
+
115
+ ## Bias, Risks, and Limitations
116
+
117
+ We only provide data for weaving patterns of size \\(6 \times 5\\) and \\(7 \times 6\\) in this repository.
118
+ We are happy to generate (subsets) of datasets for larger values of \\(n \times n-1\)).
119
+
120
+ ## Citation
121
+
122
+ **BibTeX:**
123
+
124
+
125
+ @article{chau2025machine,
126
+ title={Machine learning meets algebraic combinatorics: A suite of datasets capturing research-level conjecturing ability in pure mathematics},
127
+ author={Chau, Herman and Jenne, Helen and Brown, Davis and He, Jesse and Raugas, Mark and Billey, Sara and Kvinge, Henry},
128
+ journal={arXiv preprint arXiv:2503.06366},
129
+ year={2025}
130
+ }
131
+
132
+
133
+ **APA:**
134
+
135
+ Chau, H., Jenne, H., Brown, D., He, J., Raugas, M., Billey, S., & Kvinge, H. (2025). Machine learning meets algebraic combinatorics: A suite of datasets capturing research-level conjecturing ability in pure mathematics. arXiv preprint arXiv:2503.06366.
136
+
137
+ ## Dataset Card Contact
138
+
139
+ Henry Kvinge, acdbenchdataset@gmail.com
140
+
141
+ ## References
142
+
143
+ \[1\] Felsner, Stefan. "On the number of arrangements of pseudolines." Proceedings of the twelfth annual Symposium on Computational Geometry. 1996.
144
+ \[2\] Chau, Herman. "On enumerating higher bruhat orders through deletion and contraction." arXiv preprint arXiv:2412.10532 (2024).