Correct error

This commit is contained in:
richardpaulhudson 2022-11-04 12:40:03 +01:00
parent f97d6e6826
commit 8d703963d3
2 changed files with 3 additions and 3 deletions

View File

@ -955,7 +955,7 @@ class Errors(metaclass=ErrorsWithCodes):
E1046 = ("{cls_name} is an abstract class and cannot be instantiated. If you are looking for spaCy's default " E1046 = ("{cls_name} is an abstract class and cannot be instantiated. If you are looking for spaCy's default "
"knowledge base, use `InMemoryLookupKB`.") "knowledge base, use `InMemoryLookupKB`.")
E1047 = ("Invalid rich group config '{label}'.") E1047 = ("Invalid rich group config '{label}'.")
E1048 = ("Length > 63 in rich group config '{label}.") E1048 = ("Length > 63 in rich group config '{label}'.")
E1049 = ("Rich group config {label} specifies lengths that are not in ascending order.") E1049 = ("Rich group config {label} specifies lengths that are not in ascending order.")
E1050 = ("Error splitting UTF-8 byte string into separate characters.") E1050 = ("Error splitting UTF-8 byte string into separate characters.")

View File

@ -183,9 +183,9 @@ updated).
> include_static_vectors = "False" > include_static_vectors = "False"
> case_sensitive = "False" > case_sensitive = "False"
> pref_lengths = [2, 3, 5] > pref_lengths = [2, 3, 5]
> pref_rows = [10000, 10000, 10000] > pref_rows = [10000, 10000,10000]
> suff_lengths = [2, 3, 4, 5] > suff_lengths = [2, 3, 4, 5]
> suff_rows = [10000, 10000,10000,10000] > suff_rows = [10000,10000,10000,10000]
> suff_search_chars = "aeiouäöüß" > suff_search_chars = "aeiouäöüß"
> suff_search_lengths = [2, 3] > suff_search_lengths = [2, 3]
> suff_search_rows = [10000,10000] > suff_search_rows = [10000,10000]