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
The config jsonnet for the bert-base model (bert_base_dep.jsonnet) has the following lines:
"model": { "type": "transformer_srl_span", "embedding_dropout": 0.1, "bert_model": "bert-base-cased", },
which should be transformer_srl_dependency??? When changing to dependency running and training of the model results in an ERROR
When trying to train a model based on the bert_tiny_dep.jsonnet (which has the correct model-type) training also results in an ERROR, stating:
TypeError: forward() got an unexpected keyword argument 'sentence_end'
The text was updated successfully, but these errors were encountered:
possible fix: add **kwargs to forward method in model.py of transformer_srl_dependency model?
Sorry, something went wrong.
No branches or pull requests
The config jsonnet for the bert-base model (bert_base_dep.jsonnet) has the following lines:
"model": {
"type": "transformer_srl_span",
"embedding_dropout": 0.1,
"bert_model": "bert-base-cased",
},
which should be transformer_srl_dependency??? When changing to dependency running and training of the model results in an ERROR
When trying to train a model based on the bert_tiny_dep.jsonnet (which has the correct model-type) training also results in an ERROR, stating:
TypeError: forward() got an unexpected keyword argument 'sentence_end'
The text was updated successfully, but these errors were encountered: