ACDRepo commited on
Commit
c17b612
·
verified ·
1 Parent(s): b9295c3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -26
README.md CHANGED
@@ -19,9 +19,10 @@ their product can be written as a linear combination of Schubert polynomials
19
  Where the sum runs over permutations in \\(S_{n+m}\\). The question is whether the
20
  \\(c^{\gamma}_{\alpha \beta}\\) (the *structure constants*) have a combinatorial interpretation.
21
  To give an example of what we mean by combinatorial interpretation, when Schur polynomials
22
- (which can be viewed as a specific case of Schubert polynomials) are multiplied together,
23
  the coefficients in the resulting product are equal to the number of semistandard tableaux
24
- satisfying certain properties.
 
25
 
26
  ## Example
27
 
@@ -32,7 +33,8 @@ and \\(\mathfrak{S}_{\beta} = x_1\\). Multiplying these together we get
32
  \\(\mathfrak{S}_{\alpha}\mathfrak{S}_{\beta} = x_1^2 + x_1x_2\\). As
33
  \\(\mathfrak{S}_{2 3 1} = x_1x_2\\) and \\(\mathfrak{S}_{3 1 2} = x_1^2\\) we can write
34
  \\(\mathfrak{S}_{\alpha}\mathfrak{S}_{\beta} = \mathfrak{S}_{2 3 1} + \mathfrak{S}_{3 1 2}\\).
35
- It follows that \\(c_{\alpha,\beta}^{\gamma} = 1\\) if \\(\gamma = 2 3 1\\) or \\(\gamma = 3 1 2\\)
 
36
  and otherwise \\(c_{\alpha,\beta}^{\gamma} = 0\\).
37
 
38
  ## Dataset
@@ -50,14 +52,6 @@ of non-zero coefficients).
50
 
51
  **Statistics**
52
 
53
- All structure constants in this case are either 0 or 1 (so the classification problem is binary).
54
-
55
- | | 0 | 1 | Total number of instances |
56
- |----------|----------|----------|----------|
57
- | Train | 851 | 833 | 1,684 |
58
- | Test | 201 | 220 | 421 |
59
-
60
-
61
  All structure constants in this case are either 0, 1, or 2.
62
 
63
  | | 0 | 1 | 2 | Total number of instances |
@@ -65,32 +59,24 @@ All structure constants in this case are either 0, 1, or 2.
65
  | Train | 42,831 | 42,619 | 170 | 85,620 |
66
  | Test | 10,681 | 10,680 | 44 | 21,405 |
67
 
68
-
69
- All structure constants in this case are either 0, 1, 2, 3, 4, or 5.
70
-
71
- | | 0 | 1 | 2 | 3 | 4 | 5 | Total number of instances |
72
- |----------|----------|----------|----------|----------|----------|----------|----------|
73
- | Train | 4,202,040 | 4,093,033 | 109,217 | 2,262 | 9 | 9 | 8,406,564 |
74
- | Test | 1,052,062 | 1,021,898 | 27,110 | 568 | 3 | 0 | 2,101,641 |
75
-
76
  ## Data generation
77
-
78
- The Sage notebook within this directory gives the code used to generate these datasets.
79
  The process involves:
80
-
81
  - For a chosen \\(n\\), compute the products \\(\mathfrak{S}_{\alpha} \mathfrak{S}_{\beta}\\) for \\(\alpha,\beta \in S_n\\).
82
- - For each of these pairs, extract and add to the dataset all non-zero structure constants \\(c^{\gamma_1}_{\alpha,\beta}, \dots, c^{\gamma_k}_{\alpha,\beta}\\)
83
  - Furthermore, for each \\(c^{\gamma_i}_{\alpha,\beta} \neq 0\\), randomly permute \\(\gamma_i \mapsto \gamma_i'\\) to find \\(c^{\gamma_i'}_{\alpha,\beta} = 0\\) and \\(c^{\gamma_i'}_{\alpha,\beta}\\) is not already in the dataset.
84
 
85
  ## Task
86
 
87
  **Math question:** Find a combinatorial interpretation of the structure constants \\(c_{\alpha,\beta}^\gamma\\)
88
- based on properties of \\(\alpha\\), \\(\beta\\), and \\(\gamma\\).
89
-
90
  **Narrow ML task:** Train a model that, given three permutations \\(\alpha, \beta, \gamma\\), can
91
- predict the associated structure constant \\(c^{\gamma}_{\alpha,\beta}\\).
 
92
 
93
  ## Small model performance
 
94
 
95
  | Size | Logistic regression | MLP | Transformer | Guessing majority class |
96
  |----------|----------|-----------|------------|------------|
 
19
  Where the sum runs over permutations in \\(S_{n+m}\\). The question is whether the
20
  \\(c^{\gamma}_{\alpha \beta}\\) (the *structure constants*) have a combinatorial interpretation.
21
  To give an example of what we mean by combinatorial interpretation, when Schur polynomials
22
+ (which are a subset of Schubert polynomials) are multiplied together,
23
  the coefficients in the resulting product are equal to the number of semistandard tableaux
24
+ satisfying certain properties (this is known as the
25
+ [Littlewood-Richardson rule](https://en.wikipedia.org/wiki/Littlewood%E2%80%93Richardson_rule)).
26
 
27
  ## Example
28
 
 
33
  \\(\mathfrak{S}_{\alpha}\mathfrak{S}_{\beta} = x_1^2 + x_1x_2\\). As
34
  \\(\mathfrak{S}_{2 3 1} = x_1x_2\\) and \\(\mathfrak{S}_{3 1 2} = x_1^2\\) we can write
35
  \\(\mathfrak{S}_{\alpha}\mathfrak{S}_{\beta} = \mathfrak{S}_{2 3 1} + \mathfrak{S}_{3 1 2}\\).
36
+ It follows that for these \\(\alpha\\) and \\(\beta\\), \\(c_{\alpha,\beta}^{\gamma} = 1\\)
37
+ if \\(\gamma = 2 3 1\\) or \\(\gamma = 3 1 2\\)
38
  and otherwise \\(c_{\alpha,\beta}^{\gamma} = 0\\).
39
 
40
  ## Dataset
 
52
 
53
  **Statistics**
54
 
 
 
 
 
 
 
 
 
55
  All structure constants in this case are either 0, 1, or 2.
56
 
57
  | | 0 | 1 | 2 | Total number of instances |
 
59
  | Train | 42,831 | 42,619 | 170 | 85,620 |
60
  | Test | 10,681 | 10,680 | 44 | 21,405 |
61
 
 
 
 
 
 
 
 
 
62
  ## Data generation
63
+ The Sage notebook within this [directory](https://github.com/pnnl/ML4AlgComb/tree/master/schubert_polynomial_structure)
64
+ gives the code used to generate these datasets.
65
  The process involves:
 
66
  - For a chosen \\(n\\), compute the products \\(\mathfrak{S}_{\alpha} \mathfrak{S}_{\beta}\\) for \\(\alpha,\beta \in S_n\\).
67
+ - For each of these pairs, extract and add to the dataset all non-zero structure constants \\(c^{\gamma_1}_{\alpha,\beta}, \dots, c^{\gamma_k}_{\alpha,\beta}\\).
68
  - Furthermore, for each \\(c^{\gamma_i}_{\alpha,\beta} \neq 0\\), randomly permute \\(\gamma_i \mapsto \gamma_i'\\) to find \\(c^{\gamma_i'}_{\alpha,\beta} = 0\\) and \\(c^{\gamma_i'}_{\alpha,\beta}\\) is not already in the dataset.
69
 
70
  ## Task
71
 
72
  **Math question:** Find a combinatorial interpretation of the structure constants \\(c_{\alpha,\beta}^\gamma\\)
73
+ based on properties of \\(\alpha\\), \\(\beta\\), and \\(\gamma\\).
 
74
  **Narrow ML task:** Train a model that, given three permutations \\(\alpha, \beta, \gamma\\), can
75
+ predict the associated structure constant \\(c^{\gamma}_{\alpha,\beta}\\). Extract the rules
76
+ the model uses to make successful predictions.
77
 
78
  ## Small model performance
79
+ Model and training details can be found in our paper.
80
 
81
  | Size | Logistic regression | MLP | Transformer | Guessing majority class |
82
  |----------|----------|-----------|------------|------------|