spaCy/spacy/tests/regression/test_issue1959.py

24 lines
814 B
Python
Raw Normal View History

2018-02-15 23:46:22 +03:00
# coding: utf8
from __future__ import unicode_literals
import pytest
@pytest.mark.models('en')
2018-02-16 01:28:38 +03:00
def test_issue1959(EN):
2018-02-15 23:46:22 +03:00
texts = ['Apple is looking at buying U.K. startup for $1 billion.']
2018-02-16 01:28:38 +03:00
# nlp = load_test_model('en_core_web_sm')
EN.add_pipe(clean_component, name='cleaner', after='ner')
doc = EN(texts[0])
doc_pipe = [doc_pipe for doc_pipe in EN.pipe(texts)]
2018-02-15 23:46:22 +03:00
assert doc == doc_pipe[0]
def clean_component(doc):
""" Clean up text. Make lowercase and remove punctuation and stopwords """
# Remove punctuation, symbols (#) and stopwords
doc = [tok.text.lower() for tok in doc if (not tok.is_stop
and tok.pos_ != 'PUNCT' and
tok.pos_ != 'SYM')]
doc = ' '.join(doc)
return doc