On Slavic Bert NER repo it is stated that this model should be a part of deeppavlov framework now. But in the deeppavlov docs about ner, there is a list of available models that does not include this model. And the config for slavic bert cannot be found even in available configs for deeppavlov on the deeppavlov github. I have tried downloading the config file from the original repository and then loading it with
from deeppavlov import build_model
ner = build_model("./ner_bert_slav.json", download=True)
but this fails with error
deeppavlov.core.common.errors.ConfigError: 'Model bert_ner is not registered.'
So is it possible to somehow use slavic bert ner with deeppavlov?