We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Thanks for this implementation. But I still have some problems. The parameters in model are initialize as follow:
def _init_weights(self, m): if isinstance(m, nn.Linear): with torch.no_grad(): trunc_normal_(m.weight, std=.02) if isinstance(m, nn.Linear) and m.bias is not None: nn.init.constant_(m.bias, 0) elif isinstance(m, nn.LayerNorm): nn.init.constant_(m.bias, 0) nn.init.constant_(m.weight, 1.0)
Does this mean I should make these parameters trainable when I train this model on my own dataset?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Thanks for this implementation. But I still have some problems. The parameters in model are initialize as follow:
Does this mean I should make these parameters trainable when I train this model on my own dataset?
The text was updated successfully, but these errors were encountered: