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
parser.add_argument("--hidden_dropout_prob", default=0.1, type=float, help="dropout probability") 代码中设置了 hidden_dropout_prob,但是却通篇找不到使用了参数的地方
比如 self.bert = GlyceBertModel(config) self.dropout = nn.Dropout(config.hidden_dropout_prob) self.classifier = nn.Linear(config.hidden_size, config.num_labels) modeling_glycebert.py中253行,直接使用了hidden_dropout_prob
The text was updated successfully, but these errors were encountered:
No branches or pull requests
parser.add_argument("--hidden_dropout_prob", default=0.1, type=float, help="dropout probability")
代码中设置了 hidden_dropout_prob,但是却通篇找不到使用了参数的地方
比如
self.bert = GlyceBertModel(config)
self.dropout = nn.Dropout(config.hidden_dropout_prob)
self.classifier = nn.Linear(config.hidden_size, config.num_labels)
modeling_glycebert.py中253行,直接使用了hidden_dropout_prob
The text was updated successfully, but these errors were encountered: