Hi! I tried scaling MLP sizes a bit, and almost always they start to learn worse or slower. I noticed that for larger widths (e.g. 1024+) step size is always stays at almost zero (<1e-8), while all other metrics are of similar magnitude compared to 128 hidden (like td error). The only change is that l1 norm, which is currently a global sum over all parameters. For larger models this sum grows quickly and reduces the learning rate.
Is this expected or normal? It feels weird to me. Larger models do not necessary should have smaller step sizes.
I tried to replace global sum with the average, but from initial experiments it does not work...
Hi! I tried scaling MLP sizes a bit, and almost always they start to learn worse or slower. I noticed that for larger widths (e.g. 1024+) step size is always stays at almost zero (<1e-8), while all other metrics are of similar magnitude compared to 128 hidden (like td error). The only change is that l1 norm, which is currently a global sum over all parameters. For larger models this sum grows quickly and reduces the learning rate.
Is this expected or normal? It feels weird to me. Larger models do not necessary should have smaller step sizes.
I tried to replace global sum with the average, but from initial experiments it does not work...