mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
Merge branch 'master' into spacy.io
This commit is contained in:
commit
2b8bfd6cc7
|
@ -405,7 +405,7 @@ class BadHTMLMerger(object):
|
|||
for match_id, start, end in matches:
|
||||
spans.append(doc[start:end])
|
||||
with doc.retokenize() as retokenizer:
|
||||
for span in hashtags:
|
||||
for span in spans:
|
||||
retokenizer.merge(span)
|
||||
for token in span:
|
||||
token._.bad_html = True # Mark token as bad HTML
|
||||
|
@ -679,7 +679,7 @@ for match_id, start, end in matches:
|
|||
if doc.vocab.strings[match_id] == "HASHTAG":
|
||||
hashtags.append(doc[start:end])
|
||||
with doc.retokenize() as retokenizer:
|
||||
for span in spans:
|
||||
for span in hashtags:
|
||||
retokenizer.merge(span)
|
||||
for token in span:
|
||||
token._.is_hashtag = True
|
||||
|
|
Loading…
Reference in New Issue
Block a user