You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise ValueError("Unable to find spacy model '{}'. Is your language supported? "
"Check the list of models available here: "
"https://github.com/explosion/spacy-models ".format(self.model))
We'd like to ask for the feature that allows using a self-trained spacy ner model. For example, removing this check or relaxing it? Thanks!
if not self.check_spacy_model(self.model):
raise ValueError("Unable to find spacy model '{}'. Is your language supported? "
"Check the list of models available here: "
"https://github.com/explosion/spacy-models ".format(self.model))
The text was updated successfully, but these errors were encountered:
Hi team,
Recently we have been trying to use a self-trained spacy ner model in
scrubadub
. However, the condition checks in the line https://github.com/LeapBeyond/scrubadub_spacy/blob/main/scrubadub_spacy/detectors/spacy.py#L111 will raise an error.We'd like to ask for the feature that allows using a self-trained spacy ner model. For example, removing this check or relaxing it? Thanks!
The text was updated successfully, but these errors were encountered: