mirror of https://github.com/explosion/spaCy.git
Avoid making prepositions get the tag SCONJ
This commit is contained in:
parent
22250cf6b7
commit
095c63c6b8
|
@ -3,55 +3,59 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
from ...symbols import LEMMA, PRON_LEMMA
|
from ...symbols import LEMMA, PRON_LEMMA
|
||||||
|
|
||||||
|
# Several entries here look pretty suspicious. These will get the POS SCONJ
|
||||||
|
# given the tag IN, when an adpositional reading seems much more likely for
|
||||||
|
# a lot of these prepositions. I'm not sure what I was running in 04395ffa4
|
||||||
|
# when I did this? It doesn't seem right.
|
||||||
_subordinating_conjunctions = [
|
_subordinating_conjunctions = [
|
||||||
"that",
|
"that",
|
||||||
"if",
|
"if",
|
||||||
"as",
|
"as",
|
||||||
"because",
|
"because",
|
||||||
"of",
|
#"of",
|
||||||
"for",
|
#"for",
|
||||||
"before",
|
#"before",
|
||||||
"in",
|
#"in",
|
||||||
"while",
|
"while",
|
||||||
"after",
|
#"after",
|
||||||
"since",
|
"since",
|
||||||
"like",
|
"like",
|
||||||
"with",
|
#"with",
|
||||||
"so",
|
"so",
|
||||||
"to",
|
#"to",
|
||||||
"by",
|
#"by",
|
||||||
"on",
|
#"on",
|
||||||
"about",
|
#"about",
|
||||||
"than",
|
"than",
|
||||||
"whether",
|
"whether",
|
||||||
"although",
|
"although",
|
||||||
"from",
|
#"from",
|
||||||
"though",
|
"though",
|
||||||
"until",
|
#"until",
|
||||||
"unless",
|
"unless",
|
||||||
"once",
|
"once",
|
||||||
"without",
|
#"without",
|
||||||
"at",
|
#"at",
|
||||||
"into",
|
#"into",
|
||||||
"cause",
|
"cause",
|
||||||
"over",
|
#"over",
|
||||||
"upon",
|
"upon",
|
||||||
"till",
|
"till",
|
||||||
"whereas",
|
"whereas",
|
||||||
"beyond",
|
#"beyond",
|
||||||
"whilst",
|
"whilst",
|
||||||
"except",
|
"except",
|
||||||
"despite",
|
"despite",
|
||||||
"wether",
|
"wether",
|
||||||
"then",
|
#"then",
|
||||||
"but",
|
"but",
|
||||||
"becuse",
|
"becuse",
|
||||||
"whie",
|
"whie",
|
||||||
"below",
|
#"below",
|
||||||
"against",
|
#"against",
|
||||||
"it",
|
"it",
|
||||||
"w/out",
|
"w/out",
|
||||||
"toward",
|
#"toward",
|
||||||
"albeit",
|
"albeit",
|
||||||
"save",
|
"save",
|
||||||
"besides",
|
"besides",
|
||||||
|
@ -63,7 +67,7 @@ _subordinating_conjunctions = [
|
||||||
"out",
|
"out",
|
||||||
"near",
|
"near",
|
||||||
"seince",
|
"seince",
|
||||||
"towards",
|
#"towards",
|
||||||
"tho",
|
"tho",
|
||||||
"sice",
|
"sice",
|
||||||
"will",
|
"will",
|
||||||
|
|
Loading…
Reference in New Issue