mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-12 04:38:28 +03:00
24 lines
814 B
Python
24 lines
814 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.models('en')
|
|
def test_issue1959(EN):
|
|
texts = ['Apple is looking at buying U.K. startup for $1 billion.']
|
|
# 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)]
|
|
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
|