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 everyone,
I would like to used "bert_ft" as a starting model and fine tune it on other reactions to extract a new rxnfp fingerprint. Something like this:
model, tokenizer = get_default_model_and_tokenizer()
or
model = SmilesLanguageModelingModel(model_type='bert', model_name = 'bert_ft', args=args)
train_file = 'my_reactions_train.txt' eval_file = 'my_reactions_test.txt' model.train_model(train_file=train_file, eval_file=eval_file)
However this does not work. So far, I have only succeed in using "bert_mlm_1k_tpl":
model = SmilesLanguageModelingModel(model_type='bert', model_name = 'bert_mlm_1k_tpl', args=args) train_file = 'my_reactions_train.txt' eval_file = 'my_reactions_test.txt' model.train_model(train_file=train_file, eval_file=eval_file)
Anyone to shed some light?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone,
I would like to used "bert_ft" as a starting model and fine tune it on other reactions to extract a new rxnfp fingerprint.
Something like this:
or
However this does not work. So far, I have only succeed in using "bert_mlm_1k_tpl":
Anyone to shed some light?
The text was updated successfully, but these errors were encountered: