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
按照博客里说的“具体来说,Sentence-BERT是将u,v,|u−v|(其中|u−v|是指u−v的每个元素都取绝对值后构成的向量)拼接起来做为特征,后面接一个全连接层做2分类(如果是NLI数据集则是3分类)。” 为什么在train/supervised.py里output = keras.layers.Dense(5, use_bias=False)(output)
output = keras.layers.Dense(5, use_bias=False)(output)
The text was updated successfully, but these errors were encountered:
https://kexue.fm/archives/8541/comment-page-1#comments
Sorry, something went wrong.
No branches or pull requests
按照博客里说的“具体来说,Sentence-BERT是将u,v,|u−v|(其中|u−v|是指u−v的每个元素都取绝对值后构成的向量)拼接起来做为特征,后面接一个全连接层做2分类(如果是NLI数据集则是3分类)。”
为什么在train/supervised.py里
output = keras.layers.Dense(5, use_bias=False)(output)
The text was updated successfully, but these errors were encountered: