Hi
I want to fine tune the ner_ontonotes_bert with my data that has the same tags as in Ontonotes data.
I don’t want to train the model from scratch. I just want to fine tune it with some sentences of my context.
Is it possible to do it?
Hi
I want to fine tune the ner_ontonotes_bert with my data that has the same tags as in Ontonotes data.
I don’t want to train the model from scratch. I just want to fine tune it with some sentences of my context.
Is it possible to do it?
Hi!
Yes, it is possible.
To fine-tune model on your data you should take ner_ontonotes_bert
configuration file and modify data_path
in dataset_reader
. The data should be in the same format as the original one.
The model will be loaded from the pre-trained checkpoint (specified in save/load_path
).