From 4d9aae7d6a52dbc17809d9204acc42f384ad8532 Mon Sep 17 00:00:00 2001 From: Sourav Singh Date: Sat, 19 Nov 2016 22:47:53 +0530 Subject: [PATCH 1/8] Add German Stopwords --- spacy/de/language_data.py | 73 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 72 insertions(+), 1 deletion(-) diff --git a/spacy/de/language_data.py b/spacy/de/language_data.py index afb275cdd..9772be01e 100644 --- a/spacy/de/language_data.py +++ b/spacy/de/language_data.py @@ -3,7 +3,78 @@ from __future__ import unicode_literals import re -STOP_WORDS = set() +STOP_WORDS = set(""" +a ab aber ach acht achte achten achter achtes +ag alle allein allem allen aller allerdings alles +allgemeinen als also am an andere anderen +andern anders au auch auf aus ausser außer +ausserdem außerdem b bald bei beide beiden +beim beispiel bekannt bereits besonders +besser besten bin bis bisher bist da +dabei dadurch dafür dagegen daher +dahin dahinter damals damit danach +daneben dank dann daran darauf +daraus darf darfst darin darüber +darum darunter das dasein daselbst +dass daß dasselbe davon davor dazu +dazwischen dein deine deinem deiner +dem dementsprechend demgegenüber +demgemäss demgemäß demselben +demzufolge den denen denn denselben +der deren derjenige derjenigen dermassen +dermaßen derselbe derselben des deshalb +desselben dessen deswegen dich die diejenige +diejenigen dies diese dieselbe dieselben diesem +diesen dieser dieses dir doch dort drei drin dritte +dritten dritter drittes du durch durchaus dürfen +dürft durfte durften eben ebenso ehrlich ei eigen +eigene eigenen eigener eigenes ein einander eine +einem einen einer eines einigeeinigen einiger einiges +einmal einmaleins elf en ende endlich entweder +er erst erste ersten erster erstes es etwa etwas euch +früher fünf fünfte fünften fünfter fünftes für gab ganz +ganze ganzen ganzer ganzes gar gedurft gegen +gegenüber gehabt gehen geht gekannt gekonnt gemacht +gemocht gemusst genug gerade gern gesagt geschweige +gewesen gewollt geworden gibt ging gleich gott gross +groß grosse große grossen großen grosser großer +grosses großes gut gute guter gutes habe haben habt +hast hat hatte hätte hatten hätten heisst her heute hier +hin hinter hoch ich ihm ihn ihnen ihr ihre ihrem ihrer +ihres im immer in indem infolgedessen ins irgend ist +ja jahr jahre jahren je jede jedem jeden jeder jedermann +jedermanns jedoch jemand jemandem jemanden jene +jenem jenen jener jenes jetzt kam kann kannst kaum kein +keine keinem keinen keiner kleine kleinen kleiner kleines +kommen kommt können könnt konnte könnte konnten kurz +lang lange leicht leide lieber los machen macht machte mag +magst mahn man manche manchem manchen mancher +manches mann mehr mein meine meinem meinen meiner +meines mensch menschen mich mir mit mittel mochte +möchte mochten mögen möglich mögt morgen muss muß +müssen musst müsst musste mussten na nach nachdem nahm +natürlich neben nein neue neuen neun neunte neunten neunter +neuntes nicht nichts nie niemand niemandem niemanden noch +nun nur ob oben oder offen oft ohne ordnung recht rechte +rechten rechter rechtes richtig rund sa sache sagt sagte sah satt +schlecht Schluss schon sechs sechste sechsten sechster sechstes +sehr sei seid seien sein seine seinem seinen seiner seines seit +seitdem selbst selbst sich sie sieben siebente siebenten siebenter +siebentes sind so solang solche solchem solchen solcher solches +soll sollen sollte sollten sondern sonst sowie später statt tag tage +tagen tat teil tel tritt trotzdem tun über überhaupt übrigens uhr +um und uns unser unsere unserer unter vergangenen viel viele +vielem vielen vielleicht vier vierte vierten vierter viertes vom von +vor wahr während währenddem währenddessen wann war wäre +waren wart warum was wegen weil weit weiter weitere weiteren +weiteres welche welchem welchen welcher welches wem wen +wenig wenige weniger weniges wenigstens wenn wer werde +werden werdet wessen wie wieder will willst wir wird wirklich +wirst wo wohl wollen wollt wollte wollten worden wurde würde +wurden würden zehn zehnte zehnten zehnter zehntes zeit zu +zuerst zugleich zum zunächst zur zurück zusammen zwanzig +zwar zwei zweite zweiten zweiter zweites zwischen +""".split()) TOKENIZER_PREFIXES = map(re.escape, r''' From 094c51f4962ee5fa795cb07bb064cf57067fa894 Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Sun, 20 Nov 2016 13:55:52 +0000 Subject: [PATCH 2/8] Add cythonize.json to .gitignore This gets generated for me when installing from the local repo with pip using `sudo pip3 install -e .` from within the spaCy folder. I figure it should be ignored. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0c19913ef..299c67985 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,7 @@ data/en/strings _build/ .env/ tmp/ +cythonize.json # Byte-compiled / optimized / DLL files __pycache__/ From 6745eac3095c9d21b704f17f994a2545cbdeab74 Mon Sep 17 00:00:00 2001 From: Sourav Singh Date: Sun, 20 Nov 2016 19:52:02 +0530 Subject: [PATCH 3/8] Update language_data.py --- spacy/de/language_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/de/language_data.py b/spacy/de/language_data.py index 9772be01e..a2250b5a8 100644 --- a/spacy/de/language_data.py +++ b/spacy/de/language_data.py @@ -4,11 +4,11 @@ import re STOP_WORDS = set(""" -a ab aber ach acht achte achten achter achtes +ab aber ach acht achte achten achter achtes ag alle allein allem allen aller allerdings alles allgemeinen als also am an andere anderen andern anders au auch auf aus ausser außer -ausserdem außerdem b bald bei beide beiden +ausserdem außerdem bald bei beide beiden beim beispiel bekannt bereits besonders besser besten bin bis bisher bist da dabei dadurch dafür dagegen daher From 3082e493266ded9508597c41b5acd851dfa97075 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 20 Nov 2016 16:45:26 +0100 Subject: [PATCH 4/8] Update and reformat German stopwords --- spacy/de/language_data.py | 145 ++++++++++++++++++++------------------ 1 file changed, 75 insertions(+), 70 deletions(-) diff --git a/spacy/de/language_data.py b/spacy/de/language_data.py index a2250b5a8..92ec3e9c7 100644 --- a/spacy/de/language_data.py +++ b/spacy/de/language_data.py @@ -4,76 +4,81 @@ import re STOP_WORDS = set(""" -ab aber ach acht achte achten achter achtes -ag alle allein allem allen aller allerdings alles -allgemeinen als also am an andere anderen -andern anders au auch auf aus ausser außer -ausserdem außerdem bald bei beide beiden -beim beispiel bekannt bereits besonders -besser besten bin bis bisher bist da -dabei dadurch dafür dagegen daher -dahin dahinter damals damit danach -daneben dank dann daran darauf -daraus darf darfst darin darüber -darum darunter das dasein daselbst -dass daß dasselbe davon davor dazu -dazwischen dein deine deinem deiner -dem dementsprechend demgegenüber -demgemäss demgemäß demselben -demzufolge den denen denn denselben -der deren derjenige derjenigen dermassen -dermaßen derselbe derselben des deshalb -desselben dessen deswegen dich die diejenige -diejenigen dies diese dieselbe dieselben diesem -diesen dieser dieses dir doch dort drei drin dritte -dritten dritter drittes du durch durchaus dürfen -dürft durfte durften eben ebenso ehrlich ei eigen -eigene eigenen eigener eigenes ein einander eine -einem einen einer eines einigeeinigen einiger einiges -einmal einmaleins elf en ende endlich entweder -er erst erste ersten erster erstes es etwa etwas euch -früher fünf fünfte fünften fünfter fünftes für gab ganz -ganze ganzen ganzer ganzes gar gedurft gegen -gegenüber gehabt gehen geht gekannt gekonnt gemacht -gemocht gemusst genug gerade gern gesagt geschweige -gewesen gewollt geworden gibt ging gleich gott gross -groß grosse große grossen großen grosser großer -grosses großes gut gute guter gutes habe haben habt -hast hat hatte hätte hatten hätten heisst her heute hier -hin hinter hoch ich ihm ihn ihnen ihr ihre ihrem ihrer -ihres im immer in indem infolgedessen ins irgend ist -ja jahr jahre jahren je jede jedem jeden jeder jedermann -jedermanns jedoch jemand jemandem jemanden jene -jenem jenen jener jenes jetzt kam kann kannst kaum kein -keine keinem keinen keiner kleine kleinen kleiner kleines -kommen kommt können könnt konnte könnte konnten kurz -lang lange leicht leide lieber los machen macht machte mag -magst mahn man manche manchem manchen mancher -manches mann mehr mein meine meinem meinen meiner -meines mensch menschen mich mir mit mittel mochte -möchte mochten mögen möglich mögt morgen muss muß -müssen musst müsst musste mussten na nach nachdem nahm -natürlich neben nein neue neuen neun neunte neunten neunter -neuntes nicht nichts nie niemand niemandem niemanden noch -nun nur ob oben oder offen oft ohne ordnung recht rechte -rechten rechter rechtes richtig rund sa sache sagt sagte sah satt -schlecht Schluss schon sechs sechste sechsten sechster sechstes -sehr sei seid seien sein seine seinem seinen seiner seines seit -seitdem selbst selbst sich sie sieben siebente siebenten siebenter -siebentes sind so solang solche solchem solchen solcher solches -soll sollen sollte sollten sondern sonst sowie später statt tag tage -tagen tat teil tel tritt trotzdem tun über überhaupt übrigens uhr -um und uns unser unsere unserer unter vergangenen viel viele -vielem vielen vielleicht vier vierte vierten vierter viertes vom von -vor wahr während währenddem währenddessen wann war wäre -waren wart warum was wegen weil weit weiter weitere weiteren -weiteres welche welchem welchen welcher welches wem wen -wenig wenige weniger weniges wenigstens wenn wer werde -werden werdet wessen wie wieder will willst wir wird wirklich -wirst wo wohl wollen wollt wollte wollten worden wurde würde -wurden würden zehn zehnte zehnten zehnter zehntes zeit zu -zuerst zugleich zum zunächst zur zurück zusammen zwanzig -zwar zwei zweite zweiten zweiter zweites zwischen + +á a ab aber ach acht achte achten achter achtes ag alle allein allem allen +aller allerdings alles allgemeinen als also am an andere anderen andern anders +auch auf aus ausser außer ausserdem außerdem + +bald bei beide beiden beim beispiel bekannt bereits besonders besser besten bin +bis bisher bist + +da dabei dadurch dafür dagegen daher dahin dahinter damals damit danach daneben +dank dann daran darauf daraus darf darfst darin darüber darum darunter das +dasein daselbst dass daß dasselbe davon davor dazu dazwischen dein deine deinem +deiner dem dementsprechend demgegenüber demgemäss demgemäß demselben demzufolge +den denen denn denselben der deren derjenige derjenigen dermassen dermaßen +derselbe derselben des deshalb desselben dessen deswegen dich die diejenige +diejenigen dies diese dieselbe dieselben diesem diesen dieser dieses dir doch +dort drei drin dritte dritten dritter drittes du durch durchaus dürfen dürft +durfte durften + +eben ebenso ehrlich eigen eigene eigenen eigener eigenes ein einander eine +einem einen einer eines einigeeinigen einiger einiges einmal einmaleins elf en +ende endlich entweder er erst erste ersten erster erstes es etwa etwas euch + +früher fünf fünfte fünften fünfter fünftes für + +gab ganz ganze ganzen ganzer ganzes gar gedurft gegen gegenüber gehabt gehen +geht gekannt gekonnt gemacht gemocht gemusst genug gerade gern gesagt geschweige +gewesen gewollt geworden gibt ging gleich gott gross groß grosse große grossen +großen grosser großer grosses großes gut gute guter gutes + +habe haben habt hast hat hatte hätte hatten hätten heisst heißt her heute hier hin hinter hoch + +ich ihm ihn ihnen ihr ihre ihrem ihrer ihres im immer in indem infolgedessen +ins irgend ist + +ja jahr jahre jahren je jede jedem jeden jeder jedermann jedermanns jedoch +jemand jemandem jemanden jene jenem jenen jener jenes jetzt + +kam kann kannst kaum kein keine keinem keinen keiner kleine kleinen kleiner +kleines kommen kommt können könnt konnte könnte konnten kurz + +lang lange leicht leider lieber los + +machen macht machte mag magst man manche manchem manchen mancher manches mehr +mein meine meinem meinen meiner meines mensch menschen mich mir mit mittel +mochte möchte mochten mögen möglich mögt morgen muss muß müssen musst müsst +musste mussten + +na nach nachdem nahm natürlich neben nein neue neuen neun neunte neunten neunter +neuntes nicht nichts nie niemand niemandem niemanden noch nun nur + +ob oben oder offen oft ohne + +recht rechte rechten rechter rechtes richtig rund + +sagt sagte sah satt schlecht schon sechs sechste sechsten sechster sechstes +sehr sei seid seien sein seine seinem seinen seiner seines seit seitdem selbst +selbst sich sie sieben siebente siebenten siebenter siebentes siebte siebten +siebter siebtes sind so solang solche solchem solchen solcher solches soll +sollen sollte sollten sondern sonst sowie später statt + +tag tage tagen tat teil tel trotzdem tun + +über überhaupt übrigens uhr um und uns unser unsere unserer unter + +vergangene vergangenen viel viele vielem vielen vielleicht vier vierte vierten +vierter viertes vom von vor + +wahr während währenddem währenddessen wann war wäre waren wart warum was wegen +weil weit weiter weitere weiteren weiteres welche welchem welchen welcher +welches wem wen wenig wenige weniger weniges wenigstens wenn wer werde werden +werdet wessen wie wieder will willst wir wird wirklich wirst wo wohl wollen wollt wollte wollten worden wurde würde wurden würden + +zehn zehnte zehnten zehnter zehntes zeit zu zuerst zugleich zum zunächst zur +zurück zusammen zwanzig zwar zwei zweite zweiten zweiter zweites zwischen + """.split()) From dad2c6cae922d9f7f792f9fb907f4d8da2ee033c Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 20 Nov 2016 16:45:51 +0100 Subject: [PATCH 5/8] Strip trailing whitespace --- spacy/en/language_data.py | 3792 ++++++++++++++++++------------------- 1 file changed, 1896 insertions(+), 1896 deletions(-) diff --git a/spacy/en/language_data.py b/spacy/en/language_data.py index 3c9db8fe2..52a413ec6 100644 --- a/spacy/en/language_data.py +++ b/spacy/en/language_data.py @@ -4,34 +4,34 @@ from __future__ import unicode_literals # improved list from Stone, Denis, Kwantes (2010) STOP_WORDS = set(""" -a about above across after afterwards again against all almost alone -along already also although always am among amongst amoungst amount -an and another any anyhow anyone anything anyway anywhere are around -as at back be became because become becomes becoming been before -beforehand behind being below beside besides between beyond bill -both bottom but by call can cannot cant co computer con could couldnt -cry de describe detail did didn do does doesn doing don done down due -during each eg eight either eleven else elsewhere empty enough etc +a about above across after afterwards again against all almost alone +along already also although always am among amongst amoungst amount +an and another any anyhow anyone anything anyway anywhere are around +as at back be became because become becomes becoming been before +beforehand behind being below beside besides between beyond bill +both bottom but by call can cannot cant co computer con could couldnt +cry de describe detail did didn do does doesn doing don done down due +during each eg eight either eleven else elsewhere empty enough etc even ever every everyone everything everywhere except few fifteen -fify fill find fire first five for former formerly forty found four -from front full further get give go had has hasnt have he hence her -here hereafter hereby herein hereupon hers herself him himself his -how however hundred i ie if in inc indeed interest into is it its -itself keep last latter latterly least less ltd just kg km made make -many may me meanwhile might mill mine more moreover most mostly move -much must my myself name namely neither never nevertheless next nine -no nobody none noone nor not nothing now nowhere of off often on once -one only onto or other others otherwise our ours ourselves out over -own part per perhaps please put rather re quite rather really regarding -same say see seem seemed seeming seems serious several she should +fify fill find fire first five for former formerly forty found four +from front full further get give go had has hasnt have he hence her +here hereafter hereby herein hereupon hers herself him himself his +how however hundred i ie if in inc indeed interest into is it its +itself keep last latter latterly least less ltd just kg km made make +many may me meanwhile might mill mine more moreover most mostly move +much must my myself name namely neither never nevertheless next nine +no nobody none noone nor not nothing now nowhere of off often on once +one only onto or other others otherwise our ours ourselves out over +own part per perhaps please put rather re quite rather really regarding +same say see seem seemed seeming seems serious several she should show side since sincere six sixty so some somehow someone something -sometime sometimes somewhere still such system take ten than that the -their them themselves then thence there thereafter thereby therefore -therein thereupon these they thick thin third this those though three -through throughout thru thus to together too top toward towards twelve -twenty two un under until up unless upon us used using various very -very via was we well were what whatever when whence whenever where whereafter -whereas whereby wherein whereupon wherever whether which while whither +sometime sometimes somewhere still such system take ten than that the +their them themselves then thence there thereafter thereby therefore +therein thereupon these they thick thin third this those though three +through throughout thru thus to together too top toward towards twelve +twenty two un under until up unless upon us used using various very +very via was we well were what whatever when whence whenever where whereafter +whereas whereby wherein whereupon wherever whether which while whither who whoever whole whom whose why will with within without would yet you your yours yourself yourselves """.split()) @@ -101,7 +101,7 @@ TAG_MAP = { TOKENIZER_PREFIXES = r''', " ( [ { * < $ £ “ ' `` ` # US$ C$ A$ a- ‘ .... ...'''.split() -TOKENIZER_SUFFIXES = (r''', \" \) \] \} \* \! \? % \$ > : ; ' ” '' 's 'S ’s ’S ’''' +TOKENIZER_SUFFIXES = (r''', \" \) \] \} \* \! \? % \$ > : ; ' ” '' 's 'S ’s ’S ’''' r'''\.\. \.\.\. \.\.\.\. (?<=[a-z0-9)\]”"'%\)])\. ''' r'''(?<=[0-9])km''').strip().split() @@ -126,4919 +126,4919 @@ TOKENIZER_EXCEPTIONS = { { "F": "d." } - ], + ], "Theydve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], ":/": [ { "F": ":/" } - ], + ], "shouldn't've": [ { "F": "should" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "There'll": [ { "F": "There" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "E.G.": [ { "F": "E.G." } - ], + ], "howll": [ { "F": "how" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "6a.m.": [ { "F": "6" - }, + }, { "F": "a.m." } - ], + ], "Ore.": [ { "F": "Ore." } - ], + ], "Hadn't've": [ { - "F": "Had", - "L": "have", + "F": "Had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], ":>": [ { "F": ":>" } - ], + ], "3p.m.": [ { "F": "3" - }, + }, { "F": "p.m." } - ], + ], "who'll": [ { "F": "who" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "5a.m.": [ { "F": "5" - }, + }, { "F": "a.m." } - ], + ], ":(": [ { "F": ":(" } - ], + ], ":0": [ { "F": ":0" } - ], + ], "10a.m.": [ { "F": "10" - }, + }, { "F": "a.m." } - ], + ], "aint": [ { - "F": "ai", - "pos": "VBP", - "number": 2, + "F": "ai", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], " ": [ { - "pos": "SP", + "pos": "SP", "F": " " } - ], + ], "Dec.": [ { "F": "Dec." } - ], + ], "Shouldnt": [ { "F": "Should" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Ky.": [ { "F": "Ky." } - ], + ], "when's": [ { "F": "when" - }, + }, { "F": "'s" } - ], + ], "Didnt": [ { - "F": "Did", - "L": "do", + "F": "Did", + "L": "do", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "itll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "Who're": [ { "F": "Who" - }, + }, { "F": "'re" } - ], + ], "=D": [ { "F": "=D" } - ], + ], "Ain't": [ { - "F": "Ai", - "pos": "VBP", - "number": 2, + "F": "Ai", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Can't": [ { - "F": "Ca", - "L": "can", + "F": "Ca", + "L": "can", "pos": "MD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Whyre": [ { "F": "Why" - }, + }, { "F": "re" } - ], + ], "Aren't": [ { - "F": "Are", - "pos": "VBP", - "number": 2, + "F": "Are", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Neednt": [ { "F": "Need" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "should've": [ { "F": "should" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "shouldn't": [ { "F": "should" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Idve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "weve": [ { "F": "we" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Va.": [ { "F": "Va." } - ], + ], "D.C.": [ { "F": "D.C." } - ], + ], "3am": [ { "F": "3" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "Ive": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Md.": [ { "F": "Md." } - ], + ], ";D": [ { "F": ";D" } - ], + ], "Mrs.": [ { "F": "Mrs." } - ], + ], "Minn.": [ { "F": "Minn." } - ], + ], "they'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Youdve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "theyve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Weren't": [ { "F": "Were" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "werent": [ { "F": "were" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "whyre": [ { "F": "why" - }, + }, { "F": "re" } - ], + ], "g.": [ { "F": "g." } - ], + ], "I'm": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "pos": "VBP", - "F": "'m", - "tenspect": 1, - "number": 1, + "pos": "VBP", + "F": "'m", + "tenspect": 1, + "number": 1, "L": "be" } - ], + ], ":p": [ { "F": ":p" } - ], + ], "She'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "not've": [ { - "F": "not", - "L": "not", + "F": "not", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "we'll": [ { "F": "we" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], ":O": [ { "F": ":O" } - ], + ], "<33": [ { "F": "<33" } - ], + ], "Don't": [ { - "L": "do", + "L": "do", "F": "Do" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Whyll": [ { "F": "Why" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "''": [ { "F": "''" } - ], + ], "they've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "t.": [ { "F": "t." } - ], + ], "wasn't": [ { "F": "was" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "could've": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "what've": [ { "F": "what" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "havent": [ { - "pos": "VB", + "pos": "VB", "F": "have" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Who've": [ { "F": "Who" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "11am": [ { "F": "11" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "Shan't": [ { "F": "Sha" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "i'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "i.e.": [ { "F": "i.e." } - ], + ], "you'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "w.": [ { "F": "w." } - ], + ], "whens": [ { "F": "when" - }, + }, { "F": "s" } - ], + ], "whys": [ { "F": "why" - }, + }, { "F": "s" } - ], + ], "6pm": [ { "F": "6" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "4p.m.": [ { "F": "4" - }, + }, { "F": "p.m." } - ], + ], "Whereve": [ { "F": "Where" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "o_o": [ { "F": "o_o" } - ], + ], "Mo.": [ { "F": "Mo." } - ], + ], "Kan.": [ { "F": "Kan." } - ], + ], "\u00a0": [ { - "pos": "SP", - "L": " ", + "pos": "SP", + "L": " ", "F": "\u00a0" } - ], + ], "there'd": [ { "F": "there" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "N.H.": [ { "F": "N.H." } - ], + ], "(^_^)": [ { "F": "(^_^)" } - ], + ], "Mont.": [ { "F": "Mont." } - ], + ], "hadn't've": [ { - "F": "had", - "L": "have", + "F": "had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "whatll": [ { "F": "what" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "wouldn't've": [ { "F": "would" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "there's": [ { "F": "there" - }, + }, { "F": "'s" } - ], + ], "2pm": [ { "F": "2" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "Who'll": [ { "F": "Who" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "o_O": [ { "F": "o_O" } - ], + ], "Nev.": [ { "F": "Nev." } - ], + ], "youll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "wouldve": [ { "F": "would" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Nov.": [ { "F": "Nov." } - ], + ], "z.": [ { "F": "z." } - ], + ], "xDD": [ { "F": "xDD" } - ], + ], "Sen.": [ { "F": "Sen." } - ], + ], "Wouldnt": [ { "F": "Would" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Thered": [ { "F": "There" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Youre": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { "F": "re" } - ], + ], "Couldn't've": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "who're": [ { "F": "who" - }, + }, { "F": "'re" } - ], + ], "Whys": [ { "F": "Why" - }, + }, { "F": "s" } - ], + ], "mightn't've": [ { "F": "might" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Wholl": [ { "F": "Who" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "hadn't": [ { - "F": "had", - "L": "have", + "F": "had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Havent": [ { - "pos": "VB", + "pos": "VB", "F": "Have" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Whatve": [ { "F": "What" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], ":)": [ { "F": ":)" } - ], + ], "o.O": [ { "F": "o.O" } - ], + ], "Thats": [ { "F": "That" - }, + }, { "F": "s" } - ], + ], ":((": [ { "F": ":((" } - ], + ], "Gov.": [ { "F": "Gov." } - ], + ], "Howll": [ { "F": "How" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "p.": [ { "F": "p." } - ], + ], "wouldn't": [ { "F": "would" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "9pm": [ { "F": "9" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "You'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Ala.": [ { "F": "Ala." } - ], + ], "12am": [ { "F": "12" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "=]": [ { "F": "=]" } - ], + ], "Cant": [ { - "F": "Ca", - "L": "can", + "F": "Ca", + "L": "can", "pos": "MD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "i'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "a.m.": [ { "F": "a.m." } - ], + ], "weren't": [ { "F": "were" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "would've": [ { "F": "would" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "i'm": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "pos": "VBP", - "F": "'m", - "tenspect": 1, - "number": 1, + "pos": "VBP", + "F": "'m", + "tenspect": 1, + "number": 1, "L": "be" } - ], + ], "why'll": [ { "F": "why" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "we'd've": [ { "F": "we" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Shouldve": [ { "F": "Should" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "can't": [ { - "F": "ca", - "L": "can", + "F": "ca", + "L": "can", "pos": "MD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "thats": [ { "F": "that" - }, + }, { "F": "s" } - ], + ], "1p.m.": [ { "F": "1" - }, + }, { "F": "p.m." } - ], + ], "12a.m.": [ { "F": "12" - }, + }, { "F": "a.m." } - ], + ], "Hes": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { "F": "s" } - ], + ], "Needn't": [ { "F": "Need" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "It's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { "F": "'s" } - ], + ], "St.": [ { "F": "St." } - ], + ], "Why're": [ { "F": "Why" - }, + }, { "F": "'re" } - ], + ], ":(((": [ { "F": ":(((" } - ], + ], "Hed": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Mt.": [ { - "L": "Mount", + "L": "Mount", "F": "Mt." } - ], + ], "couldn't": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "What've": [ { "F": "What" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "4a.m.": [ { "F": "4" - }, + }, { "F": "a.m." } - ], + ], "Ind.": [ { "F": "Ind." } - ], + ], "It'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "<3": [ { "F": "<3" } - ], + ], "theydve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "aren't": [ { - "F": "are", - "pos": "VBP", - "number": 2, + "F": "are", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Mightn't": [ { "F": "Might" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "'S": [ { - "L": "'s", + "L": "'s", "F": "'S" } - ], + ], "I've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Whered": [ { "F": "Where" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Itdve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "I'ma": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { "F": "'ma" } - ], + ], "whos": [ { "F": "who" - }, + }, { "F": "s" } - ], + ], "They'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "What'll": [ { "F": "What" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], ":Y": [ { "F": ":Y" } - ], + ], "You've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Mustve": [ { "F": "Must" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "whod": [ { "F": "who" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "mightntve": [ { "F": "might" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "I'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Must've": [ { "F": "Must" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "it'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Ark.": [ { "F": "Ark." } - ], + ], "Wis.": [ { "F": "Wis." } - ], + ], "6p.m.": [ { "F": "6" - }, + }, { "F": "p.m." } - ], + ], "what're": [ { "F": "what" - }, + }, { "F": "'re" } - ], + ], "N.C.": [ { "F": "N.C." } - ], + ], "Wasn't": [ { "F": "Was" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "what's": [ { "F": "what" - }, + }, { "F": "'s" } - ], + ], "he'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Jan.": [ { "F": "Jan." } - ], + ], "She'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "shedve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Tenn.": [ { "F": "Tenn." } - ], + ], "ain't": [ { - "F": "ai", - "pos": "VBP", - "number": 2, + "F": "ai", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Wash.": [ { "F": "Wash." } - ], + ], "She's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { "F": "'s" } - ], + ], "i'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "2a.m.": [ { "F": "2" - }, + }, { "F": "a.m." } - ], + ], "We'd've": [ { "F": "We" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "must've": [ { "F": "must" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "That's": [ { "F": "That" - }, + }, { "F": "'s" } - ], + ], "Sept.": [ { "F": "Sept." } - ], + ], "whatre": [ { "F": "what" - }, + }, { "F": "re" } - ], + ], "you'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Dont": [ { - "L": "do", + "L": "do", "F": "Do" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "i.": [ { "F": "i." } - ], + ], "Jun.": [ { "F": "Jun." } - ], + ], "thered": [ { "F": "there" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Youd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "couldn't've": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Whens": [ { "F": "When" - }, + }, { "F": "s" } - ], + ], "8a.m.": [ { "F": "8" - }, + }, { "F": "a.m." } - ], + ], "Isnt": [ { - "F": "Is", - "L": "be", + "F": "Is", + "L": "be", "pos": "VBZ" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "mightve": [ { "F": "might" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "'ol": [ { "F": "'ol" } - ], + ], "2p.m.": [ { "F": "2" - }, + }, { "F": "p.m." } - ], + ], "9a.m.": [ { "F": "9" - }, + }, { "F": "a.m." } - ], + ], "q.": [ { "F": "q." } - ], + ], "didnt": [ { - "F": "did", - "L": "do", + "F": "did", + "L": "do", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "ive": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "It'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "e.g.": [ { "F": "e.g." } - ], + ], "\t": [ { - "pos": "SP", + "pos": "SP", "F": "\t" } - ], + ], "Mich.": [ { "F": "Mich." } - ], + ], "Itll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "didn't": [ { - "F": "did", - "L": "do", + "F": "did", + "L": "do", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "3pm": [ { "F": "3" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "Jul.": [ { "F": "Jul." } - ], + ], "7pm": [ { "F": "7" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "cant": [ { - "F": "ca", - "L": "can", + "F": "ca", + "L": "can", "pos": "MD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Miss.": [ { "F": "Miss." } - ], + ], "im": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "pos": "VBP", - "F": "m", - "tenspect": 1, - "number": 1, + "pos": "VBP", + "F": "m", + "tenspect": 1, + "number": 1, "L": "be" } - ], + ], "Ariz.": [ { "F": "Ariz." } - ], + ], "they'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "f.": [ { "F": "f." } - ], + ], "Co.": [ { "F": "Co." } - ], + ], "Hadntve": [ { - "F": "Had", - "L": "have", + "F": "Had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Weve": [ { "F": "We" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "1a.m.": [ { "F": "1" - }, + }, { "F": "a.m." } - ], + ], "=3": [ { "F": "=3" } - ], + ], "Mightnt": [ { "F": "Might" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "1pm": [ { "F": "1" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "youdve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Shedve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "theyd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Ill.": [ { "F": "Ill." } - ], + ], "N.D.": [ { "F": "N.D." } - ], + ], "Cannot": [ { - "F": "Can", - "L": "can", + "F": "Can", + "L": "can", "pos": "MD" - }, + }, { - "F": "not", - "L": "not", + "F": "not", + "L": "not", "pos": "RB" } - ], + ], "s.": [ { "F": "s." } - ], + ], "Hadn't": [ { - "F": "Had", - "L": "have", + "F": "Had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "What're": [ { "F": "What" - }, + }, { "F": "'re" } - ], + ], "He'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "wholl": [ { "F": "who" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "They're": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { "F": "'re" } - ], + ], "Neb.": [ { "F": "Neb." } - ], + ], "shouldnt": [ { "F": "should" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "\n": [ { - "pos": "SP", + "pos": "SP", "F": "\n" } - ], + ], "whered": [ { "F": "where" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "7a.m.": [ { "F": "7" - }, + }, { "F": "a.m." } - ], + ], "youve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "4am": [ { "F": "4" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "v.": [ { "F": "v." } - ], + ], "notve": [ { - "F": "not", - "L": "not", + "F": "not", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "couldve": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "mustve": [ { "F": "must" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Youve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "therell": [ { "F": "there" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "might've": [ { "F": "might" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Mustn't": [ { "F": "Must" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "wheres": [ { "F": "where" - }, + }, { "F": "s" } - ], + ], "they're": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { "F": "'re" } - ], + ], "idve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "hows": [ { "F": "how" - }, + }, { "F": "s" } - ], + ], "Fla.": [ { "F": "Fla." } - ], + ], "N.M.": [ { "F": "N.M." } - ], + ], "youre": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { "F": "re" } - ], + ], "Didn't": [ { - "F": "Did", - "L": "do", + "F": "Did", + "L": "do", "pos": "VBD" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Couldve": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "10p.m.": [ { "F": "10" - }, + }, { "F": "p.m." } - ], + ], "Del.": [ { "F": "Del." } - ], + ], "Oct.": [ { "F": "Oct." } - ], + ], "Rep.": [ { "F": "Rep." } - ], + ], "cannot": [ { - "F": "can", - "L": "can", + "F": "can", + "L": "can", "pos": "MD" - }, + }, { - "F": "not", - "L": "not", + "F": "not", + "L": "not", "pos": "RB" } - ], + ], "Im": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "pos": "VBP", - "F": "m", - "tenspect": 1, - "number": 1, + "pos": "VBP", + "F": "m", + "tenspect": 1, + "number": 1, "L": "be" } - ], + ], "howd": [ { "F": "how" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Okla.": [ { "F": "Okla." } - ], + ], "Feb.": [ { "F": "Feb." } - ], + ], "you've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "You're": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { "F": "'re" } - ], + ], "she'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Theyll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "don't": [ { - "L": "do", + "L": "do", "F": "do" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "itd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], ":-)": [ { "F": ":-)" } - ], + ], "Hedve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "isnt": [ { - "F": "is", - "L": "be", + "F": "is", + "L": "be", "pos": "VBZ" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "won't": [ { "F": "wo" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "We're": [ { "F": "We" - }, + }, { "F": "'re" } - ], + ], "3a.m.": [ { "F": "3" - }, + }, { "F": "a.m." } - ], + ], "^_^": [ { "F": "^_^" } - ], + ], "\u2018S": [ { - "L": "'s", + "L": "'s", "F": "\u2018S" } - ], + ], "9p.m.": [ { "F": "9" - }, + }, { "F": "p.m." } - ], + ], "dont": [ { - "L": "do", + "L": "do", "F": "do" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "ima": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { "F": "ma" } - ], + ], "Let's": [ { "F": "Let" - }, + }, { - "L": "us", + "L": "us", "F": "'s" } - ], + ], "he's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { "F": "'s" } - ], + ], "we've": [ { "F": "we" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "What's": [ { "F": "What" - }, + }, { "F": "'s" } - ], + ], "Who's": [ { "F": "Who" - }, + }, { "F": "'s" } - ], + ], "-__-": [ { "F": "-__-" } - ], + ], "hedve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "he'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "When's": [ { "F": "When" - }, + }, { "F": "'s" } - ], + ], "Mightn't've": [ { "F": "Might" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "We've": [ { "F": "We" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "\u2018s": [ { - "L": "'s", + "L": "'s", "F": "\u2018s" } - ], + ], "Couldntve": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Who'd": [ { "F": "Who" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], ":-/": [ { "F": ":-/" } - ], + ], "haven't": [ { - "pos": "VB", + "pos": "VB", "F": "have" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Gen.": [ { "F": "Gen." } - ], + ], "(:": [ { "F": "(:" } - ], + ], "arent": [ { - "F": "are", - "pos": "VBP", - "number": 2, + "F": "are", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "You'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "c.": [ { "F": "c." } - ], + ], "(=": [ { "F": "(=" } - ], + ], "Wouldn't": [ { "F": "Would" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "who's": [ { "F": "who" - }, + }, { "F": "'s" } - ], + ], "12p.m.": [ { "F": "12" - }, + }, { "F": "p.m." } - ], + ], "5am": [ { "F": "5" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "Mightve": [ { "F": "Might" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Theredve": [ { "F": "There" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "theredve": [ { "F": "there" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Messrs.": [ { "F": "Messrs." } - ], + ], "who'd": [ { "F": "who" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Where's": [ { "F": "Where" - }, + }, { "F": "'s" } - ], + ], "wont": [ { "F": "wo" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "she'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "10pm": [ { "F": "10" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "Corp.": [ { "F": "Corp." } - ], + ], "Aug.": [ { "F": "Aug." } - ], + ], "-_-": [ { "F": "-_-" } - ], + ], "y.": [ { "F": "y." } - ], + ], "Should've": [ { "F": "Should" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "11pm": [ { "F": "11" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "8am": [ { "F": "8" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "theyre": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { "F": "re" } - ], + ], "l.": [ { "F": "l." } - ], + ], "Wouldntve": [ { "F": "Would" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Ga.": [ { "F": "Ga." } - ], + ], "1am": [ { "F": "1" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "Where've": [ { "F": "Where" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "11a.m.": [ { "F": "11" - }, + }, { "F": "a.m." } - ], + ], "mustn't": [ { "F": "must" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "isn't": [ { - "F": "is", - "L": "be", + "F": "is", + "L": "be", "pos": "VBZ" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Bros.": [ { "F": "Bros." } - ], + ], "Aint": [ { - "F": "Ai", - "pos": "VBP", - "number": 2, + "F": "Ai", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "why's": [ { "F": "why" - }, + }, { "F": "'s" } - ], + ], "V_V": [ { "F": "V_V" } - ], + ], ";p": [ { "F": ";p" } - ], + ], "There'd": [ { "F": "There" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "They'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "b.": [ { "F": "b." } - ], + ], "how'll": [ { "F": "how" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Wedve": [ { "F": "We" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "couldntve": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "12pm": [ { "F": "12" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "There's": [ { "F": "There" - }, + }, { "F": "'s" } - ], + ], "we'd": [ { "F": "we" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Dr.": [ { "F": "Dr." } - ], + ], "Whod": [ { "F": "Who" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], ":-P": [ { "F": ":-P" } - ], + ], "whatve": [ { "F": "what" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Wouldve": [ { "F": "Would" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "o.": [ { "F": "o." } - ], + ], "there'll": [ { "F": "there" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], ":]": [ { "F": ":]" } - ], + ], "needn't": [ { "F": "need" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "shouldntve": [ { "F": "should" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "why're": [ { "F": "why" - }, + }, { "F": "'re" } - ], + ], "p.m.": [ { "F": "p.m." } - ], + ], "Doesnt": [ { - "F": "Does", - "L": "do", + "F": "Does", + "L": "do", "pos": "VBZ" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "whereve": [ { "F": "where" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "they'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "I'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Might've": [ { "F": "Might" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "mightnt": [ { "F": "might" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Kans.": [ { "F": "Kans." } - ], + ], "Not've": [ { - "F": "Not", - "L": "not", + "F": "Not", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "e.": [ { "F": "e." } - ], + ], "mightn't": [ { "F": "might" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "you're": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { "F": "'re" } - ], + ], "Mar.": [ { "F": "Mar." } - ], + ], "They've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "\")": [ { "F": "\")" } - ], + ], "what'll": [ { "F": "what" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Calif.": [ { "F": "Calif." } - ], + ], "Could've": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Would've": [ { "F": "Would" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], ";)": [ { "F": ";)" } - ], + ], ";(": [ { "F": ";(" } - ], + ], "Isn't": [ { - "F": "Is", - "L": "be", + "F": "Is", + "L": "be", "pos": "VBZ" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "let's": [ { "F": "let" - }, + }, { - "L": "us", + "L": "us", "F": "'s" } - ], + ], "'em": [ { "F": "'em" } - ], + ], "She'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "I.E.": [ { "F": "I.E." } - ], + ], "You'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "wouldnt": [ { "F": "would" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "6am": [ { "F": "6" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], ":P": [ { "F": ":P" } - ], + ], "Why'll": [ { "F": "Why" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Where'd": [ { "F": "Where" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Theyre": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { "F": "re" } - ], + ], "11p.m.": [ { "F": "11" - }, + }, { "F": "p.m." } - ], + ], "Won't": [ { "F": "Wo" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Couldn't": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "it's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { "F": "'s" } - ], + ], "r.": [ { "F": "r." } - ], + ], "it'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "They'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Ima": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { "F": "ma" } - ], + ], "5pm": [ { "F": "5" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "10am": [ { "F": "10" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "m.": [ { "F": "m." } - ], + ], "whats": [ { "F": "what" - }, + }, { "F": "s" } - ], + ], "How's": [ { "F": "How" - }, + }, { "F": "'s" } - ], + ], "Sep.": [ { "F": "Sep." } - ], + ], "Shouldntve": [ { "F": "Should" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "youd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "Whatll": [ { "F": "What" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "Wouldn't've": [ { "F": "Would" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "How'd": [ { "F": "How" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "doesnt": [ { - "F": "does", - "L": "do", + "F": "does", + "L": "do", "pos": "VBZ" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "h.": [ { "F": "h." } - ], + ], "Shouldn't": [ { "F": "Should" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "He'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Mightntve": [ { "F": "Might" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "couldnt": [ { - "pos": "MD", + "pos": "MD", "F": "could" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Haven't": [ { - "pos": "VB", + "pos": "VB", "F": "Have" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "<333": [ { "F": "<333" } - ], + ], "doesn't": [ { - "F": "does", - "L": "do", + "F": "does", + "L": "do", "pos": "VBZ" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Hasn't": [ { "F": "Has" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "how's": [ { "F": "how" - }, + }, { "F": "'s" } - ], + ], "hes": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { "F": "s" } - ], + ], "=[[": [ { "F": "=[[" } - ], + ], "xD": [ { "F": "xD" } - ], + ], "he'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "hed": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "he" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "7p.m.": [ { "F": "7" - }, + }, { "F": "p.m." } - ], + ], "how'd": [ { "F": "how" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "u.": [ { "F": "u." } - ], + ], "we're": [ { "F": "we" - }, + }, { "F": "'re" } - ], + ], "vs.": [ { "F": "vs." } - ], + ], "Hadnt": [ { - "F": "Had", - "L": "have", + "F": "Had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Shant": [ { "F": "Sha" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Theyve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Hows": [ { "F": "How" - }, + }, { "F": "s" } - ], + ], "We'll": [ { "F": "We" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "N.Y.": [ { "F": "N.Y." } - ], + ], "x.": [ { "F": "x." } - ], + ], "8p.m.": [ { "F": "8" - }, + }, { "F": "p.m." } - ], + ], "i've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Whove": [ { "F": "Who" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "2am": [ { "F": "2" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "La.": [ { "F": "La." } - ], + ], "i'ma": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "i" - }, + }, { "F": "'ma" } - ], + ], "N.J.": [ { "F": "N.J." } - ], + ], "Nebr.": [ { "F": "Nebr." } - ], + ], "Howd": [ { "F": "How" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "hadnt": [ { - "F": "had", - "L": "have", + "F": "had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "shant": [ { "F": "sha" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "There'd've": [ { "F": "There" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Inc.": [ { "F": "Inc." } - ], + ], "I'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "I" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Why's": [ { "F": "Why" - }, + }, { "F": "'s" } - ], + ], "Adm.": [ { "F": "Adm." } - ], + ], "Shouldn't've": [ { "F": "Should" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "n.": [ { "F": "n." } - ], + ], "Wasnt": [ { "F": "Was" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "whove": [ { "F": "who" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], ";-p": [ { "F": ";-p" } - ], + ], "hasn't": [ { "F": "has" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "wouldntve": [ { "F": "would" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Wheres": [ { "F": "Where" - }, + }, { "F": "s" } - ], + ], "How'll": [ { "F": "How" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "there'd've": [ { "F": "there" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Whos": [ { "F": "Who" - }, + }, { "F": "s" } - ], + ], "shes": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { "F": "s" } - ], + ], "Doesn't": [ { - "F": "Does", - "L": "do", + "F": "Does", + "L": "do", "pos": "VBZ" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], "Arent": [ { - "F": "Are", - "pos": "VBP", - "number": 2, + "F": "Are", + "pos": "VBP", + "number": 2, "L": "be" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Hasnt": [ { "F": "Has" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "j.": [ { "F": "j." } - ], + ], "He's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { "F": "'s" } - ], + ], "wasnt": [ { "F": "was" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "whyll": [ { "F": "why" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "co.": [ { "F": "co." } - ], + ], "mustnt": [ { "F": "must" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "He'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "He" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "I.e.": [ { "F": "I.e." } - ], + ], "Shes": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "She" - }, + }, { "F": "s" } - ], + ], "where've": [ { "F": "where" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Youll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "You" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "Apr.": [ { "F": "Apr." } - ], + ], ":')": [ { "F": ":')" } - ], + ], "Conn.": [ { "F": "Conn." } - ], + ], "8pm": [ { "F": "8" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], "9am": [ { "F": "9" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "hasnt": [ { "F": "has" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "theyll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "they" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "it'd've": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "itdve": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "it" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "Jr.": [ { "F": "Jr." } - ], + ], "Rev.": [ { "F": "Rev." } - ], + ], "k.": [ { "F": "k." } - ], + ], "wedve": [ { "F": "we" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "=)": [ { "F": "=)" } - ], + ], "Colo.": [ { "F": "Colo." } - ], + ], "Mr.": [ { "F": "Mr." } - ], + ], "Werent": [ { "F": "Were" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Therell": [ { "F": "There" - }, + }, { - "F": "ll", - "L": "will", + "F": "ll", + "L": "will", "pos": "MD" } - ], + ], "shan't": [ { "F": "sha" - }, + }, { - "F": "n't", - "L": "not", + "F": "n't", + "L": "not", "pos": "RB" } - ], + ], ";-)": [ { "F": ";-)" } - ], + ], "Wont": [ { "F": "Wo" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "hadntve": [ { - "F": "had", - "L": "have", + "F": "had", + "L": "have", "pos": "VBD" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "who've": [ { "F": "who" - }, + }, { - "F": "'ve", - "L": "have", + "F": "'ve", + "L": "have", "pos": "VB" } - ], + ], "Whatre": [ { "F": "What" - }, + }, { "F": "re" } - ], + ], "'s": [ { - "L": "'s", + "L": "'s", "F": "'s" } - ], + ], "where'd": [ { "F": "where" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "shouldve": [ { "F": "should" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "a.": [ { "F": "a." } - ], + ], "where's": [ { "F": "where" - }, + }, { "F": "'s" } - ], + ], "Ltd.": [ { "F": "Ltd." } - ], + ], "Mass.": [ { "F": "Mass." } - ], + ], "neednt": [ { "F": "need" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Pa.": [ { "F": "Pa." } - ], + ], "It'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "7am": [ { "F": "7" - }, + }, { - "L": "a.m.", + "L": "a.m.", "F": "am" } - ], + ], "We'd": [ { "F": "We" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Whats": [ { "F": "What" - }, + }, { "F": "s" } - ], + ], "\u2014": [ { - "pos": ":", - "L": "--", + "pos": ":", + "L": "--", "F": "\u2014" } - ], + ], "E.g.": [ { "F": "E.g." } - ], + ], "Ms.": [ { "F": "Ms." } - ], + ], ":3": [ { "F": ":3" } - ], + ], "5p.m.": [ { "F": "5" - }, + }, { "F": "p.m." } - ], + ], "Itd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "It" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "May.": [ { "F": "May." } - ], + ], "she'd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { - "F": "'d", - "L": "would", + "F": "'d", + "L": "would", "pos": "MD" } - ], + ], "Mustnt": [ { "F": "Must" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "Notve": [ { - "F": "Not", - "L": "not", + "F": "Not", + "L": "not", "pos": "RB" - }, + }, { - "F": "ve", - "L": "have", + "F": "ve", + "L": "have", "pos": "VB" } - ], + ], "you'll": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "you" - }, + }, { - "F": "'ll", - "L": "will", + "F": "'ll", + "L": "will", "pos": "MD" } - ], + ], "Theyd": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "They" - }, + }, { - "F": "d", - "L": "would", + "F": "d", + "L": "would", "pos": "MD" } - ], + ], "she's": [ { - "L": "-PRON-", + "L": "-PRON-", "F": "she" - }, + }, { "F": "'s" } - ], + ], "Couldnt": [ { - "pos": "MD", + "pos": "MD", "F": "Could" - }, + }, { - "F": "nt", - "L": "not", + "F": "nt", + "L": "not", "pos": "RB" } - ], + ], "that's": [ { "F": "that" - }, + }, { "F": "'s" } - ], + ], "4pm": [ { "F": "4" - }, + }, { - "L": "p.m.", + "L": "p.m.", "F": "pm" } - ], + ], ":))": [ { "F": ":))" From b6e507e026b0f312be3d3cc992d7eadeaaca7cb9 Mon Sep 17 00:00:00 2001 From: ExplodingCabbage Date: Sun, 20 Nov 2016 16:02:54 +0000 Subject: [PATCH 6/8] Fix spelling error on website front page --- website/index.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/index.jade b/website/index.jade index 5a126c8b3..62c54d94d 100644 --- a/website/index.jade +++ b/website/index.jade @@ -15,7 +15,7 @@ include _includes/_mixins +grid-col("third").o-card +h(2) Fastest in the world p - | spaCy excells at large-scale information extraction tasks. + | spaCy excels at large-scale information extraction tasks. | It's written from the ground up in carefully memory-managed | Cython. Independent research has confirmed that spaCy is | the fastest in the world. If your application needs to From b4e1dc0e3f41f474df5a3371511c8fd165a415f2 Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Sun, 20 Nov 2016 17:02:45 +0000 Subject: [PATCH 7/8] Fix a bunch of missing spaces of the website --- website/docs/api/doc.jade | 4 ++-- website/docs/api/span.jade | 4 ++-- website/docs/api/vocab.jade | 4 ++-- website/docs/usage/processing-text.jade | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/docs/api/doc.jade b/website/docs/api/doc.jade index 86c4dd65a..fab1dd86b 100644 --- a/website/docs/api/doc.jade +++ b/website/docs/api/doc.jade @@ -164,8 +164,8 @@ p +cell #[code other] +cell - +cell - | The object to compare with. By default, accepts #[code Doc], - | #[code Span], #[code Token] and #[code Lexeme] objects. + | The object to compare with. By default, accepts #[code Doc], + | #[code Span], #[code Token] and #[code Lexeme] objects. +footrow +cell return diff --git a/website/docs/api/span.jade b/website/docs/api/span.jade index f071f5abc..a07ee25d9 100644 --- a/website/docs/api/span.jade +++ b/website/docs/api/span.jade @@ -156,8 +156,8 @@ p +cell #[code other] +cell - +cell - | The object to compare with. By default, accepts #[code Doc], - | #[code Span], #[code Token] and #[code Lexeme] objects. + | The object to compare with. By default, accepts #[code Doc], + | #[code Span], #[code Token] and #[code Lexeme] objects. +footrow +cell return diff --git a/website/docs/api/vocab.jade b/website/docs/api/vocab.jade index 96356cb41..7490bccf4 100644 --- a/website/docs/api/vocab.jade +++ b/website/docs/api/vocab.jade @@ -70,8 +70,8 @@ p Create the vocabulary. +cell #[code lex_attr_getters] +cell dict +cell - | A dictionary mapping attribute IDs to functions to compute them. - | Defaults to #[code None]. + | A dictionary mapping attribute IDs to functions to compute them. + | Defaults to #[code None]. +row +cell #[code lemmatizer] diff --git a/website/docs/usage/processing-text.jade b/website/docs/usage/processing-text.jade index b26538dcb..205986e8a 100644 --- a/website/docs/usage/processing-text.jade +++ b/website/docs/usage/processing-text.jade @@ -73,7 +73,7 @@ p | one-by-one. After a long and bitter struggle, the global interpreter | lock was freed around spaCy's main parsing loop in v0.100.3. This means | that the #[code .pipe()] method will be significantly faster in most - | practical situations, because it allows shared memory parallelism. + | practical situations, because it allows shared memory parallelism. +code. for doc in nlp.pipe(texts, batch_size=10000, n_threads=3): From 270d42e73a8e5a8a2efc2243d03a81777da5cfd1 Mon Sep 17 00:00:00 2001 From: Mark Amery Date: Sun, 20 Nov 2016 17:08:04 +0000 Subject: [PATCH 8/8] Fix another typo on the website --- website/docs/usage/language-processing-pipeline.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/usage/language-processing-pipeline.jade b/website/docs/usage/language-processing-pipeline.jade index f6b044f2f..3a30ce6cb 100644 --- a/website/docs/usage/language-processing-pipeline.jade +++ b/website/docs/usage/language-processing-pipeline.jade @@ -56,7 +56,7 @@ p | fetched via #[code spacy.util.get_data_path()]. You can | configure this default using #[code spacy.util.set_data_path()]. | The data path is expected to be either a string, or an object - | responding to #[code thepathlib.Path] interface. If the path is + | responding to the #[code pathlib.Path] interface. If the path is | a string, it will be immediately transformed into a | #[code pathlib.Path] object. spaCy promises to never manipulate | or open file-system paths as strings. All access to the