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
In https://github.com/georgian-io/Multimodal-Toolkit/blob/master/multimodal_transformers/model/tabular_transformers.py#L10, the statements from transformers.modeling_bert import BERT_INPUTS_DOCSTRING (and others) lead to an error with the most recent transformers package, and should be changed to: from transformers.models.bert.modeling_bert import BERT_INPUTS_DOCSTRING etc
from transformers.modeling_bert import BERT_INPUTS_DOCSTRING
from transformers.models.bert.modeling_bert import BERT_INPUTS_DOCSTRING
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In https://github.com/georgian-io/Multimodal-Toolkit/blob/master/multimodal_transformers/model/tabular_transformers.py#L10, the statements
from transformers.modeling_bert import BERT_INPUTS_DOCSTRING
(and others)lead to an error with the most recent transformers package, and should be changed to:
from transformers.models.bert.modeling_bert import BERT_INPUTS_DOCSTRING
etcThe text was updated successfully, but these errors were encountered: