1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
# Estimator vs Nonzero-Cost Theorem
We do not need the estimator to be the main theory.
The estimator answers:
```text
given an initialization, feedback matrix, data, and early operator state,
how large is the finite-time FA/BP train-gap?
```
The theorem we want for the paper can be weaker and cleaner:
```text
redundant parameters do not make random feedback alignment cost-free.
```
These are different claims.
## Avoid the Wrong Claim
Do not claim:
```text
overparameterized FA cannot reach zero training error.
```
That is too strong and likely false in important settings. Existing
overparameterized FA results prove convergence to zero training error in
specific two-layer settings.
The right claim is:
```text
overparameterization does not imply zero FA/BP operator gap or zero alignment
cost.
```
FA may eventually fit the task while still having a nonzero finite-time tangent
capacity loss relative to BP.
## Clean Random-Subspace Theorem
Let:
```text
P = parameter dimension
k = effective alignment burden dimension
J = training-set output Jacobian
K_BP = J J^T
r = current residual
E = random k-dimensional constrained subspace, independent of J and r
P_E = projection onto E
Q = I - P_E
K_Q = J Q J^T
```
Define the one-step operator erosion:
```text
e(r) = 1 - (r^T K_Q r) / (r^T K_BP r)
```
Assume:
```text
r^T K_BP r > 0
```
Then by rotational invariance:
```text
E[P_E] = (k/P) I
E[Q] = (1 - k/P) I
```
Therefore:
```text
E[e(r) | J, r] = k/P
```
Moreover, if:
```text
v = J^T r
```
then:
```text
(r^T K_Q r) / (r^T K_BP r)
= ||Q v||^2 / ||v||^2
```
and for Haar-random `E`:
```text
||P_E v||^2 / ||v||^2 ~ Beta(k/2, (P-k)/2)
```
So:
```text
e(r) ~ Beta(k/2, (P-k)/2)
```
under the random-subspace model.
This proves:
```text
P(e(r) = 0) = 0
```
for `k > 0`, and:
```text
E[e(r)] = k/P
```
Thus redundant capacity reduces the expected erosion only through `k/P`; it
does not make the erosion exactly zero unless:
```text
k = 0
```
or in a scaling limit:
```text
k/P -> 0
```
## Scaling Consequence
If:
```text
k is fixed and P -> infinity
```
then:
```text
E[e(r)] -> 0
```
so the alignment burden vanishes asymptotically.
If:
```text
k/P -> alpha > 0
```
then:
```text
E[e(r)] -> alpha
```
and the relative operator erosion persists.
This is the theorem that directly supports the sell:
```text
capacity can dilute random feedback alignment burden, but it cannot make it
free under proportional scaling.
```
## Role of the Estimator
The estimator is not needed to prove nonzero cost.
It is needed for:
1. checking whether the random-subspace model is too pessimistic;
2. measuring `k_eff` for real FA rather than hard `k`;
3. predicting finite-time train-gap distributions after training dynamics,
alignment, and feature drift.
So the paper can separate:
```text
Theorem: random alignment burden has nonzero expected operator erosion.
Estimator: finite-time dynamics convert operator erosion into observed train-gap.
```
This separation prevents overclaiming.
## Revised Contribution Logic
Contribution 2 should not promise exact gap prediction.
It should prove:
```text
no free redundant capacity:
E[e(r)] = k_eff/P, hence nonzero when k_eff/P is nonzero.
```
Contribution 4 can then say:
```text
to quantify actual finite-time gap, use tangent-operator estimators.
```
This makes the theorem clean and the estimator useful without forcing one to do
the other's job.
|