Datasets:

Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
ACDRepo commited on
Commit
1154ca7
·
verified ·
1 Parent(s): bd6b1f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -3
README.md CHANGED
@@ -1,3 +1,66 @@
1
- ---
2
- license: cc-by-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-2.0
3
+ pretty_name: the mHeight of permutations of size 9
4
+ ---
5
+
6
+ # The mHeight Function of a Permutation of Size 9
7
+
8
+ Truly challenging open problems in mathematics often require the development
9
+ of new mathematical constructions (or even entire new areas of mathematics).
10
+ This dataset represents a modest example of this. The mHeight function is
11
+ a statistic associated with a permutation that relates to all \\(3412\\)-patterns
12
+ in the permutation. It was developed and plays a crucial role in the proof by
13
+ Gaetz and Gao [1] which resolved a long-standing conjecture of Billey and Postnikov
14
+ [2] about the coefficients on Kazhdan-Lusztig polynomials
15
+ (see our [Kazhdan-Lusztig polynomial dataset](https://github.com/pnnl/ML4AlgComb/tree/master/kl-polynomial_coefficients))
16
+ which carry important geometric information about certain spaces,
17
+ Schubert varieties, that are of interest both to mathematicians and physicists.
18
+ The task of predicting the mHeight function represents an interesting opportunity
19
+ to understand whether a non-trivial intermediate step in an important proof can
20
+ be learned by machine learning.
21
+
22
+ ## \\((3412)\\) patterns and the mHeight of a permutation
23
+
24
+ A \\(3412\\) *pattern* in a permutation \\(\sigma = a_1 \ldots a_n \in S_n\\) is a
25
+ quadruple \\((a_i,a_j,a_k,a_\ell)\\) such that \\(i < j < k < \ell\\) but
26
+ \\(a_k < a_\ell < a_i < a_j\\). Patterns have deep connections to algebra
27
+ and geometry [3]. Suppose \\(\sigma\\) contains at least
28
+ one occurrence of a \\(3412\\) pattern, \\((a_i,a_j,a_k,a_\ell)\\).
29
+ The *height* of \\((a_i,a_j,a_k,a_\ell)\\) is \\(a_i - a_\ell\\). The *mHeight* of
30
+ \\(\sigma\\) is then the minimum height over all \\(3412\\) patterns in \\(\sigma\\).
31
+ If \\(\sigma\\) contains no \\(3412\\) permutations then the mHeight is set to 0.
32
+
33
+ ## Dataset
34
+
35
+ This dataset contains permutations of \\(9\\) elements labeled by their mHeight. Permutations are written in
36
+ 1-line notation.
37
+
38
+ For \\(n = 9\\), mHeight takes values 0, 1, 2, 3, 4, 5, so we frame this as a classification task.
39
+
40
+ | mHeight value | 0 | 1 | 2 | 3 | 4 | 5 | Total number of instances |
41
+ |----------|----------|----------|----------|----------|----------|----------|----------|
42
+ | Train | 49,092 | 3,161 | 524 | 77 | 9 | 1 | 52,864 |
43
+ | Test | 12,317 | 759 | 118 | 19 | 3 | 0 | 13,216 |
44
+
45
+ ## Data Generation
46
+
47
+ The datasets generation scripts can be found at [here](https://github.com/pnnl/ML4AlgComb/tree/master/mheight_function).
48
+
49
+ ## Task
50
+
51
+ **ML task:** Re-discover the notation of mHeight from a performant model.
52
+
53
+ ## Small model performance
54
+ We provide some basic baselines for this task. Benchmarking details can be found in the associated paper.
55
+
56
+ | Size | Logistic regression | MLP | Transformer | Guessing 0 |
57
+ |----------|----------|-----------|------------|------------|
58
+ | \\(n= 9\\) | \\(93.2\%\\) | \\(99.8\% \pm 0.6\%\\) | \\(99.9\% \pm 0.4\%\\) | \\(93.2\%\\) |
59
+
60
+ The \\(\pm\\) signs indicate 95% confidence intervals from random weight initialization and training.
61
+
62
+ ## References
63
+
64
+ [1] Gaetz, Christian, and Yibo Gao. "On the minimal power of \\(q\\) in a Kazhdan-Lusztig polynomial." arXiv preprint arXiv:2303.13695 (2023).
65
+ [2] Billey, Sara, and Alexander Postnikov. "Smoothness of Schubert varieties via patterns in root subsystems." Advances in Applied Mathematics 34.3 (2005): 447-466.
66
+ [3] Billey, Sara C. "Pattern avoidance and rational smoothness of Schubert varieties." Advances in Mathematics 139.1 (1998): 141-156.