mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
43b960c01b
* Update with WIP * Update with WIP * Update with pipeline serialization * Update types and pipe factories * Add deep merge, tidy up and add tests * Fix pipe creation from config * Don't validate default configs on load * Update spacy/language.py Co-authored-by: Ines Montani <ines@ines.io> * Adjust factory/component meta error * Clean up factory args and remove defaults * Add test for failing empty dict defaults * Update pipeline handling and methods * provide KB as registry function instead of as object * small change in test to make functionality more clear * update example script for EL configuration * Fix typo * Simplify test * Simplify test * splitting pipes.pyx into separate files * moving default configs to each component file * fix batch_size type * removing default values from component constructors where possible (TODO: test 4725) * skip instead of xfail * Add test for config -> nlp with multiple instances * pipeline.pipes -> pipeline.pipe * Tidy up, document, remove kwargs * small cleanup/generalization for Tok2VecListener * use DEFAULT_UPSTREAM field * revert to avoid circular imports * Fix tests * Replace deprecated arg * Make model dirs require config * fix pickling of keyword-only arguments in constructor * WIP: clean up and integrate full config * Add helper to handle function args more reliably Now also includes keyword-only args * Fix config composition and serialization * Improve config debugging and add visual diff * Remove unused defaults and fix type * Remove pipeline and factories from meta * Update spacy/default_config.cfg Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com> * Update spacy/default_config.cfg * small UX edits * avoid printing stack trace for debug CLI commands * Add support for language-specific factories * specify the section of the config which holds the model to debug * WIP: add Language.from_config * Update with language data refactor WIP * Auto-format * Add backwards-compat handling for Language.factories * Update morphologizer.pyx * Fix morphologizer * Update and simplify lemmatizers * Fix Japanese tests * Port over tagger changes * Fix Chinese and tests * Update to latest Thinc * WIP: xfail first Russian lemmatizer test * Fix component-specific overrides * fix nO for output layers in debug_model * Fix default value * Fix tests and don't pass objects in config * Fix deep merging * Fix lemma lookup data registry Only load the lookups if an entry is available in the registry (and if spacy-lookups-data is installed) * Add types * Add Vocab.from_config * Fix typo * Fix tests * Make config copying more elegant * Fix pipe analysis * Fix lemmatizers and is_base_form * WIP: move language defaults to config * Fix morphology type * Fix vocab * Remove comment * Update to latest Thinc * Add morph rules to config * Tidy up * Remove set_morphology option from tagger factory * Hack use_gpu * Move [pipeline] to top-level block and make [nlp.pipeline] list Allows separating component blocks from component order – otherwise, ordering the config would mean a changed component order, which is bad. Also allows initial config to define more components and not use all of them * Fix use_gpu and resume in CLI * Auto-format * Remove resume from config * Fix formatting and error * [pipeline] -> [components] * Fix types * Fix tagger test: requires set_morphology? Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com> Co-authored-by: svlandeg <sofie.vanlandeghem@gmail.com> Co-authored-by: Matthew Honnibal <honnibal+gh@gmail.com>
145 lines
4.8 KiB
Python
145 lines
4.8 KiB
Python
import pytest
|
|
import numpy
|
|
from spacy.tokens import Doc
|
|
from spacy.matcher import Matcher
|
|
from spacy.displacy import render
|
|
from spacy.gold import iob_to_biluo
|
|
from spacy.lang.it import Italian
|
|
from spacy.lang.en import English
|
|
|
|
from ..util import add_vecs_to_vocab, get_doc
|
|
|
|
|
|
@pytest.mark.skip(
|
|
reason="Can not be fixed without iterative looping between prefix/suffix and infix"
|
|
)
|
|
def test_issue2070():
|
|
"""Test that checks that a dot followed by a quote is handled
|
|
appropriately.
|
|
"""
|
|
# Problem: The dot is now properly split off, but the prefix/suffix rules
|
|
# are not applied again afterwards. This means that the quote will still be
|
|
# attached to the remaining token.
|
|
nlp = English()
|
|
doc = nlp('First sentence."A quoted sentence" he said ...')
|
|
assert len(doc) == 11
|
|
|
|
|
|
@pytest.mark.filterwarnings("ignore::UserWarning")
|
|
def test_issue2179():
|
|
"""Test that spurious 'extra_labels' aren't created when initializing NER."""
|
|
nlp = Italian()
|
|
ner = nlp.add_pipe("ner")
|
|
ner.add_label("CITIZENSHIP")
|
|
nlp.begin_training()
|
|
nlp2 = Italian()
|
|
nlp2.add_pipe("ner")
|
|
assert len(nlp2.get_pipe("ner").labels) == 0
|
|
model = nlp2.get_pipe("ner").model
|
|
model.attrs["resize_output"](model, nlp.get_pipe("ner").moves.n_moves)
|
|
nlp2.from_bytes(nlp.to_bytes())
|
|
assert "extra_labels" not in nlp2.get_pipe("ner").cfg
|
|
assert nlp2.get_pipe("ner").labels == ("CITIZENSHIP",)
|
|
|
|
|
|
def test_issue2203(en_vocab):
|
|
"""Test that lemmas are set correctly in doc.from_array."""
|
|
words = ["I", "'ll", "survive"]
|
|
tags = ["PRP", "MD", "VB"]
|
|
lemmas = ["-PRON-", "will", "survive"]
|
|
tag_ids = [en_vocab.strings.add(tag) for tag in tags]
|
|
lemma_ids = [en_vocab.strings.add(lemma) for lemma in lemmas]
|
|
doc = Doc(en_vocab, words=words)
|
|
# Work around lemma corruption problem and set lemmas after tags
|
|
doc.from_array("TAG", numpy.array(tag_ids, dtype="uint64"))
|
|
doc.from_array("LEMMA", numpy.array(lemma_ids, dtype="uint64"))
|
|
assert [t.tag_ for t in doc] == tags
|
|
assert [t.lemma_ for t in doc] == lemmas
|
|
# We need to serialize both tag and lemma, since this is what causes the bug
|
|
doc_array = doc.to_array(["TAG", "LEMMA"])
|
|
new_doc = Doc(doc.vocab, words=words).from_array(["TAG", "LEMMA"], doc_array)
|
|
assert [t.tag_ for t in new_doc] == tags
|
|
assert [t.lemma_ for t in new_doc] == lemmas
|
|
|
|
|
|
def test_issue2219(en_vocab):
|
|
vectors = [("a", [1, 2, 3]), ("letter", [4, 5, 6])]
|
|
add_vecs_to_vocab(en_vocab, vectors)
|
|
[(word1, vec1), (word2, vec2)] = vectors
|
|
doc = Doc(en_vocab, words=[word1, word2])
|
|
assert doc[0].similarity(doc[1]) == doc[1].similarity(doc[0])
|
|
|
|
|
|
def test_issue2361(de_tokenizer):
|
|
chars = ("<", ">", "&", """)
|
|
doc = de_tokenizer('< > & " ')
|
|
doc.is_parsed = True
|
|
doc.is_tagged = True
|
|
html = render(doc)
|
|
for char in chars:
|
|
assert char in html
|
|
|
|
|
|
def test_issue2385():
|
|
"""Test that IOB tags are correctly converted to BILUO tags."""
|
|
# fix bug in labels with a 'b' character
|
|
tags1 = ("B-BRAWLER", "I-BRAWLER", "I-BRAWLER")
|
|
assert iob_to_biluo(tags1) == ["B-BRAWLER", "I-BRAWLER", "L-BRAWLER"]
|
|
# maintain support for iob1 format
|
|
tags2 = ("I-ORG", "I-ORG", "B-ORG")
|
|
assert iob_to_biluo(tags2) == ["B-ORG", "L-ORG", "U-ORG"]
|
|
# maintain support for iob2 format
|
|
tags3 = ("B-PERSON", "I-PERSON", "B-PERSON")
|
|
assert iob_to_biluo(tags3) == ["B-PERSON", "L-PERSON", "U-PERSON"]
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"tags",
|
|
[
|
|
("B-ORG", "L-ORG"),
|
|
("B-PERSON", "I-PERSON", "L-PERSON"),
|
|
("U-BRAWLER", "U-BRAWLER"),
|
|
],
|
|
)
|
|
def test_issue2385_biluo(tags):
|
|
"""Test that BILUO-compatible tags aren't modified."""
|
|
assert iob_to_biluo(tags) == list(tags)
|
|
|
|
|
|
def test_issue2396(en_vocab):
|
|
words = ["She", "created", "a", "test", "for", "spacy"]
|
|
heads = [1, 0, 1, -2, -1, -1]
|
|
matrix = numpy.array(
|
|
[
|
|
[0, 1, 1, 1, 1, 1],
|
|
[1, 1, 1, 1, 1, 1],
|
|
[1, 1, 2, 3, 3, 3],
|
|
[1, 1, 3, 3, 3, 3],
|
|
[1, 1, 3, 3, 4, 4],
|
|
[1, 1, 3, 3, 4, 5],
|
|
],
|
|
dtype=numpy.int32,
|
|
)
|
|
doc = get_doc(en_vocab, words=words, heads=heads)
|
|
span = doc[:]
|
|
assert (doc.get_lca_matrix() == matrix).all()
|
|
assert (span.get_lca_matrix() == matrix).all()
|
|
|
|
|
|
def test_issue2464(en_vocab):
|
|
"""Test problem with successive ?. This is the same bug, so putting it here."""
|
|
matcher = Matcher(en_vocab)
|
|
doc = Doc(en_vocab, words=["a", "b"])
|
|
matcher.add("4", [[{"OP": "?"}, {"OP": "?"}]])
|
|
matches = matcher(doc)
|
|
assert len(matches) == 3
|
|
|
|
|
|
@pytest.mark.filterwarnings("ignore::UserWarning")
|
|
def test_issue2482():
|
|
"""Test we can serialize and deserialize a blank NER or parser model."""
|
|
nlp = Italian()
|
|
nlp.add_pipe("ner")
|
|
b = nlp.to_bytes()
|
|
Italian().from_bytes(b)
|