mirror of https://github.com/explosion/spaCy.git
* Fix some casing problems in specials.json
This commit is contained in:
parent
6a5e035a48
commit
6c01e01f12
|
@ -147,8 +147,13 @@
|
|||
"I'll": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"i'll": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ll", "L": "will", "pos": "MD"}],
|
||||
|
||||
"I'm": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"i'm": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"Im": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "m", "L": "be", "pos": "VBP", "number": 1, "tenspect": 1}],
|
||||
"im": [{"F": "i", "L": "-PRON-"},
|
||||
|
@ -156,9 +161,14 @@
|
|||
|
||||
"I'ma": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ma"}],
|
||||
"i'ma": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ma"}],
|
||||
|
||||
|
||||
"I've": [{"F": "I", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB", "L": "have", "pos": "MD"}],
|
||||
"i've": [{"F": "i", "L": "-PRON-"},
|
||||
{"F": "'ve", "pos": "VB", "L": "have", "pos": "MD"}],
|
||||
|
||||
"isn't": [{"F": "is", "L": "be", "pos": "VBZ"},
|
||||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
@ -169,6 +179,10 @@
|
|||
{"F": "n't", "L": "not", "pos": "RB"}],
|
||||
|
||||
|
||||
"It'd": [{"F": "It", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
||||
"it'd": [{"F": "it", "L": "-PRON-"},
|
||||
{"F": "'d", "L": "would", "pos": "MD"}],
|
||||
|
||||
|
|
Loading…
Reference in New Issue