Transformers Without Normalization
jiachenzhu.github.io
Transformers Without Normalization
1–10 of 36 posts
Re: Transformers Without Normalization
#2Re: Transformers Without Normalization
#3What are the practical implications of this?
By incorporating DyT, Transformers without normalization can match or exceed the performance of their normalized counterparts, mostly without hyperparameter tuning.Re: Transformers Without Normalization
#4Re: Transformers Without Normalization
#5Re: Transformers Without Normalization
#6Re: Transformers Without Normalization
#7Surely you would want to compare the output of the LayerNorm without the weight and bias to get an impression on their similarity.
I guess it doesn't matter if the final result works, but I feel like looking at the bit that they are changing in isolation might provide a better insight as to what is happening.
Re: Transformers Without Normalization
#8Re: Transformers Without Normalization
#9If true this is very nice incremental improvement. It looks like it doesn't meaningfully improve the capabilities of the model, but is cheaper to compute than RMSNorm (which essentially all current state of art LLMs use) which means faster/cheaper training.
Re: Transformers Without Normalization
#10Is it just me or have they provided graphs of LNinput againt LNoutput when the tanh(a*x) is also followed by a weight and bias. Surely you would want to compare the output of the LayerNorm without the weight and bias to get an impression on their similarity. I guess it doesn't matter if the final result works, but I feel like looking at the bit that they are changing in isolation might provide a better insight as to…