Datasets:

Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
ACDRepo commited on
Commit
90ce536
·
verified ·
1 Parent(s): 197c20d

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 8
4
+ ---
5
+
6
+ # The mHeight Function of Permutations of Size 8
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
+
32
+ ## Dataset
33
+
34
+ This dataset contains permutations of \\(8\\) elements labeled by their mHeight. Permutations are written in
35
+ 1-line notation.
36
+
37
+ For $n = 8$, mHeight takes values 0, 1, 2, 3, 4, so we frame this as a classification task.
38
+
39
+ | mHeight value | 0 | 1 | 2 | 3 | 4 | Total number of instances |
40
+ |----------|----------|----------|----------|----------|----------|----------|
41
+ | Train | 6,716 | 508 | 78 | 9 | 1 | 7,312 |
42
+ | Test | 1,672 | 136 | 18 | 3 | 0 | 1,829 |
43
+
44
+ ## Data Generation
45
+
46
+ The datasets generation scripts can be found at [here](https://github.com/pnnl/ML4AlgComb/tree/master/mheight_function).
47
+
48
+ ## Task
49
+
50
+ **ML task:** Given a permutation, predict the mHeight. Re-discover the notation
51
+ 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= 8\\) | \\(91.4\%\\) | \\(99.4\% \pm 0.3\%\\) | \\(99.7\% \pm 0.4\%\\) | \\(91.4\%\\) |
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.