From 7369949d2e90872c56ec60ba9229ddf4bac92590 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 11 Jul 2019 14:44:32 +0200 Subject: [PATCH] Add warning for #3853 --- spacy/errors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/errors.py b/spacy/errors.py index 347ad1fca..ed3d6afb9 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -82,6 +82,8 @@ class Warnings(object): "parallel inference via multiprocessing.") W017 = ("Alias '{alias}' already exists in the Knowledge base.") W018 = ("Entity '{entity}' already exists in the Knowledge base.") + W019 = ("Changing vectors name from {old} to {new}, to avoid clash with " + "previously loaded vectors. See Issue #3853.") @add_codes