Why do some Linear layers have bias set to False?
varshanth opened this issue · 1 comments
varshanth commented
Hi,
Thanks for your code and congrats on the paper accept. I was going through your code and your model definition. I have 2 enquiries:
- Why do some Linear layers have bias set to False?
- You init linear layers with Xavier Uniform initialization. Does initialization with other methods influence your result?
Thanks!
jasongief commented
Hi, thanks for your attention to these details.
- The linear layers defined in the PSP aim to perform a linear transformation to the audio or visual feature, we just opt to implement it by a matrix multiplication without adding bias, you may try to set the bias to True and I guess the result is competitive to (or may be lower than) current setup.
- I am afraid that different initialization methods would have some influence on the model training. Obviously, a good initialization method would help to achieve the optimal situation.