5.7 MiB
5.7 MiB
from google.colab import drive
drive.mount('/content/drive')
Mounted at /content/drive
cd drive/MyDrive
/content/drive/MyDrive
cd challenging-america-word-gap-prediction/
/content/drive/MyDrive/challenging-america-word-gap-prediction
import pandas as pd
cleaned = pd.read_csv("cleaned.csv", sep=",", on_bad_lines='skip', encoding="utf-8")
import numpy as np
cleaned.fillna('', inplace=True)
cleaned
col1 | |
---|---|
0 | came fiom the last place tothis place and this... |
1 | mb boot political obeednattempt to imagine a p... |
2 | |
3 | whenever any prize property shall condemn app... |
4 | sa lkofvaluable unimpbovd relnjsiatf on the no... |
... | ... |
428512 | |
428513 | |
428514 | |
428515 | |
428516 |
428517 rows × 1 columns
import collections
queue = collections.deque(maxlen=3)
cleaned = list(cleaned['col1'])
import nltk
nltk.download('punkt')
[nltk_data] Downloading package punkt to /root/nltk_data... [nltk_data] Unzipping tokenizers/punkt.zip.
True
from nltk import bigrams
from nltk import trigrams
from nltk.util import ngrams
terms_bigrams = [list(bigrams(entry)) for entry in cleaned]
[0;31m---------------------------------------------------------------------------[0m [0;31mTypeError[0m Traceback (most recent call last) [0;32m<ipython-input-21-6fb4602f36a3>[0m in [0;36m<cell line: 1>[0;34m()[0m [0;32m----> 1[0;31m [0mterms_bigrams[0m [0;34m=[0m [0;34m[[0m[0mlist[0m[0;34m([0m[0mbigrams[0m[0;34m([0m[0mentry[0m[0;34m)[0m[0;34m)[0m [0;32mfor[0m [0mentry[0m [0;32min[0m [0ml[0m[0;34m][0m[0;34m[0m[0;34m[0m[0m [0m [0;32m<ipython-input-21-6fb4602f36a3>[0m in [0;36m<listcomp>[0;34m(.0)[0m [0;32m----> 1[0;31m [0mterms_bigrams[0m [0;34m=[0m [0;34m[[0m[0mlist[0m[0;34m([0m[0mbigrams[0m[0;34m([0m[0mentry[0m[0;34m)[0m[0;34m)[0m [0;32mfor[0m [0mentry[0m [0;32min[0m [0ml[0m[0;34m][0m[0;34m[0m[0;34m[0m[0m [0m [0;31mTypeError[0m: 'list' object is not callable
import itertools
l = []
for line in cleaned:
text = line
tokens = word_tokenize(text)
l.append(tokens)
l
bigrams= list(itertools.chain(*terms_bigrams))
bigrams
[('c', 'o'), ('o', 'l'), ('l', '1')]
from nltk import word_tokenize
cleaned = list(cleaned['col1'])
cleaned[:2]
['came fiom the last place tothis place and this place is where wenwere this is the first road i evernwas on where you can ride elsewherenfrom anywhere and be nowherenhe says while this train stops everynwhere it never stops anywhere unnless its somewhere well i saysnim glad to hear that but accordning to your figures i left myselfnwhere was which is five miles nearner to myself than i was when wenwere where we are nownwe have now reached slidellnthat a fine place the people down there remind me of bananasnthey come and go in bunches ndell used to be noted for her toughnpeople now she is noted for bentough steaks well i certainly gotnone there when the waiter broughtnit in it was so small i thought itnwas a crack in the plate i skidnwaiter what else have you got +henbrought me in two codfish and onensmelt i said waiter have you gotnpigs feet he said no rheumatismnmakes me walk that way i saldnhow is the pumpkin pieliesaidnit all squash the best i could getnin that hotel was a soup sandwichnafter the table battle the waiter andni signed an armistice i then wentnover to the hotel clerk and asked forna room he said with or without anbed i said with a bed he saidni dont think i have a bed longnenough for you i said well illnaddtwo feettoitwhenigetinitnhe gave me a lovely room on thentop floor it was one of those roomsnthat stands on each side if younhappen to get up in the middle ofnthe night you want to be sure andnget up in the middle of the roomnthat night i dreamt i was eatingnflannel cakes when i woke up halfnof the blanket was gone i mustnhave got up on the wrong side of thenbed for next morning i had an awfulnheadache i told the manager aboutnit he said you have rheumaticnpains i said no i think it is onnof those attic room pains i nad tongetupat aminthemorningsonthey could use the sheet to set thenbreakfast table', 'mb boot political obeednattempt to imagine a piatt makingnsuch an address as that of elihu bootnto the now york legislature and younfcavo a measure of tho good fortunqnwhich baa at last come to tho empirqnstate of being represented in tho unitned states senate by a statesman atntho very outset mr boot declared forntho parcels post thereby giving noticento tho country that tho express compannies no longer own a senatorial scat acncredited to new york that seat willnfor ho next six years bo occupied by ansmaa who hag convictions of his ownnwho isigovemed by reasoned politicaln ideas who had grown so accustomed tonthink nationally that it is with somonmental eflort that he can bringhimselfninto a proper perspective with thosenminor senatorial duties such as tho fillning of offices which bulk hugelynupon the horizons of tho flatts andntheir lit tho albany politicians wenare told tried to read between tho linesnfor evidence that they had among themna new organization leader somo one tonguide and direct their political machinnations and to settlo where tho goodnthings should go wo think they lisntened in vain what they heard werentimely reflections opon tho immediatenproblems of stato and national governnments mixed with excellent advice tonthe electorate on the duty of improvingnthe quality of tho stato legislaturesnit must have been something of a novnelty though possibly not wholly refreshlin gnto political thirst']
for line in cleaned:
queue.append('') #use empty string to mark the beginning of a sentence
text = line
tokens = word_tokenize(text)
for token in tokens:
# add new word to the queue
queue.append(token)
print("queue: ", queue)
# discover new word
if token not in vocab:
vocab.add(token)
print('vocab: ', vocab)
# count frequency of 1 word
if token not in unigram:
#print('unigram[token]: ', unigram[token])
unigram[token] = 0
unigram[token] += 1
print('unigram: ',unigram)
# count frequency of 2 words
if len(queue) >= 2:
item = tuple(queue)[:2]
print('item: ',item)
if item not in bigram:
bigram[item] = 0
bigram[item] += 1
print("bigram: ", bigram)
# count frequency of 3 words
if len(queue) == 3:
item = tuple(queue)
if item not in trigram:
trigram[item] = 0
trigram[item] += 1
total_words = len(unigram)
unigram[''] = total_words
queue: deque(['', 'came'], maxlen=3) vocab: {'came'} unigram: {'came': 1} item: ('', 'came') bigram: {('', 'came'): 1} queue: deque(['', 'came', 'fiom'], maxlen=3) vocab: {'fiom', 'came'} unigram: {'came': 1, 'fiom': 1} item: ('', 'came') bigram: {('', 'came'): 2} queue: deque(['came', 'fiom', 'the'], maxlen=3) vocab: {'fiom', 'the', 'came'} unigram: {'came': 1, 'fiom': 1, 'the': 1} item: ('came', 'fiom') bigram: {('', 'came'): 2, ('came', 'fiom'): 1} queue: deque(['fiom', 'the', 'last'], maxlen=3) vocab: {'fiom', 'the', 'last', 'came'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1} item: ('fiom', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1} queue: deque(['the', 'last', 'place'], maxlen=3) vocab: {'fiom', 'place', 'came', 'last', 'the'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 1} item: ('the', 'last') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1} queue: deque(['last', 'place', 'tothis'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'last', 'the'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 1, 'tothis': 1} item: ('last', 'place') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1} queue: deque(['place', 'tothis', 'place'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'last', 'the'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 2, 'tothis': 1} item: ('place', 'tothis') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1} queue: deque(['tothis', 'place', 'and'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'last', 'the', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 2, 'tothis': 1, 'and': 1} item: ('tothis', 'place') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1} queue: deque(['place', 'and', 'this'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'last', 'the', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 2, 'tothis': 1, 'and': 1, 'this': 1} item: ('place', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1} queue: deque(['and', 'this', 'place'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'last', 'the', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 1} item: ('and', 'this') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1} queue: deque(['this', 'place', 'is'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'the', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 1, 'is': 1} item: ('this', 'place') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1} queue: deque(['place', 'is', 'where'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'the', 'where', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 1, 'is': 1, 'where': 1} item: ('place', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1} queue: deque(['is', 'where', 'wenwere'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 1, 'is': 1, 'where': 1, 'wenwere': 1} item: ('is', 'where') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1} queue: deque(['where', 'wenwere', 'this'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 1, 'where': 1, 'wenwere': 1} item: ('where', 'wenwere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1} queue: deque(['wenwere', 'this', 'is'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 1, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1} item: ('wenwere', 'this') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1} queue: deque(['this', 'is', 'the'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1} item: ('this', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1} queue: deque(['is', 'the', 'first'], maxlen=3) vocab: {'fiom', 'tothis', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'first', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1, 'first': 1} item: ('is', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1} queue: deque(['the', 'first', 'road'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'the', 'where', 'first', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1, 'first': 1, 'road': 1} item: ('the', 'first') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1} queue: deque(['first', 'road', 'i'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'first', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1} item: ('first', 'road') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1} queue: deque(['road', 'i', 'evernwas'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'first', 'evernwas', 'this', 'and'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1} item: ('road', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1} queue: deque(['i', 'evernwas', 'on'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'first', 'evernwas', 'this', 'and', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 1, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1} item: ('i', 'evernwas') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1} queue: deque(['evernwas', 'on', 'where'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'first', 'evernwas', 'this', 'and', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1} item: ('evernwas', 'on') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1} queue: deque(['on', 'where', 'you'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'first', 'evernwas', 'you', 'this', 'and', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1} item: ('on', 'where') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1} queue: deque(['where', 'you', 'can'], maxlen=3) vocab: {'fiom', 'tothis', 'road', 'place', 'came', 'is', 'last', 'wenwere', 'i', 'the', 'where', 'can', 'first', 'evernwas', 'you', 'this', 'and', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1} item: ('where', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1} queue: deque(['you', 'can', 'ride'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'this', 'fiom', 'place', 'i', 'and', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'the', 'first', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1} item: ('you', 'can') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1} queue: deque(['can', 'ride', 'elsewherenfrom'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'this', 'fiom', 'place', 'i', 'and', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1} item: ('can', 'ride') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1} queue: deque(['ride', 'elsewherenfrom', 'anywhere'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'this', 'fiom', 'place', 'i', 'and', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 1, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1} item: ('ride', 'elsewherenfrom') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1} queue: deque(['elsewherenfrom', 'anywhere', 'and'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'this', 'fiom', 'place', 'i', 'and', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1} item: ('elsewherenfrom', 'anywhere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1} queue: deque(['anywhere', 'and', 'be'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1} item: ('anywhere', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1} queue: deque(['and', 'be', 'nowherenhe'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1} item: ('and', 'be') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1} queue: deque(['be', 'nowherenhe', 'says'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'says', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1} item: ('be', 'nowherenhe') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1} queue: deque(['nowherenhe', 'says', 'while'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'while', 'says', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 2, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1} item: ('nowherenhe', 'says') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1} queue: deque(['says', 'while', 'this'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'while', 'says', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1} item: ('says', 'while') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1} queue: deque(['while', 'this', 'train'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1} item: ('while', 'this') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1} queue: deque(['this', 'train', 'stops'], maxlen=3) vocab: {'tothis', 'road', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 1} item: ('this', 'train') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1} queue: deque(['train', 'stops', 'everynwhere'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 1, 'everynwhere': 1} item: ('train', 'stops') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1} queue: deque(['stops', 'everynwhere', 'it'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 1, 'everynwhere': 1, 'it': 1} item: ('stops', 'everynwhere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1} queue: deque(['everynwhere', 'it', 'never'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 1, 'everynwhere': 1, 'it': 1, 'never': 1} item: ('everynwhere', 'it') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1} queue: deque(['it', 'never', 'stops'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 1, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1} item: ('it', 'never') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1} queue: deque(['never', 'stops', 'anywhere'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1} item: ('never', 'stops') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1} queue: deque(['stops', 'anywhere', 'unnless'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1} item: ('stops', 'anywhere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1} queue: deque(['anywhere', 'unnless', 'its'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1} item: ('anywhere', 'unnless') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1} queue: deque(['unnless', 'its', 'somewhere'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1} item: ('unnless', 'its') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1} queue: deque(['its', 'somewhere', 'well'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 1, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1} item: ('its', 'somewhere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1} queue: deque(['somewhere', 'well', 'i'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1} item: ('somewhere', 'well') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1} queue: deque(['well', 'i', 'saysnim'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'says', 'stops', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1} item: ('well', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1} queue: deque(['i', 'saysnim', 'glad'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'says', 'stops', 'glad', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1} item: ('i', 'saysnim') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1} queue: deque(['saysnim', 'glad', 'to'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'says', 'stops', 'glad', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 1} item: ('saysnim', 'glad') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1} queue: deque(['glad', 'to', 'hear'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'says', 'stops', 'glad', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 1, 'hear': 1} item: ('glad', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1} queue: deque(['to', 'hear', 'that'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 1, 'hear': 1, 'that': 1} item: ('to', 'hear') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1} queue: deque(['hear', 'that', 'but'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 1, 'hear': 1, 'that': 1, 'but': 1} item: ('hear', 'that') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1} queue: deque(['that', 'but', 'accordning'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 1, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1} item: ('that', 'but') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1} queue: deque(['but', 'accordning', 'to'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1} item: ('but', 'accordning') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1} queue: deque(['accordning', 'to', 'your'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1} item: ('accordning', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1} queue: deque(['to', 'your', 'figures'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 2, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1} item: ('to', 'your') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1} queue: deque(['your', 'figures', 'i'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1} item: ('your', 'figures') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1} queue: deque(['figures', 'i', 'left'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1} item: ('figures', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1} queue: deque(['i', 'left', 'myselfnwhere'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1} item: ('i', 'left') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1} queue: deque(['left', 'myselfnwhere', 'was'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1} item: ('left', 'myselfnwhere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1} queue: deque(['myselfnwhere', 'was', 'which'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 2, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1} item: ('myselfnwhere', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1} queue: deque(['was', 'which', 'is'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1} item: ('was', 'which') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1} queue: deque(['which', 'is', 'five'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1} item: ('which', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1} queue: deque(['is', 'five', 'miles'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1} item: ('is', 'five') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1} queue: deque(['five', 'miles', 'nearner'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 2, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1} item: ('five', 'miles') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1} queue: deque(['miles', 'nearner', 'to'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1} item: ('miles', 'nearner') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1} queue: deque(['nearner', 'to', 'myself'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1} item: ('nearner', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1} queue: deque(['to', 'myself', 'than'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 3, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1} item: ('to', 'myself') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1} queue: deque(['myself', 'than', 'i'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 1, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1} item: ('myself', 'than') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1} queue: deque(['than', 'i', 'was'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1} item: ('than', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1} queue: deque(['i', 'was', 'when'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 1, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1} item: ('i', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1} queue: deque(['was', 'when', 'wenwere'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 2, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1} item: ('was', 'when') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1} queue: deque(['when', 'wenwere', 'where'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1} item: ('when', 'wenwere') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1} queue: deque(['wenwere', 'where', 'we'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1} item: ('wenwere', 'where') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1} queue: deque(['where', 'we', 'are'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1} item: ('where', 'we') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1} queue: deque(['we', 'are', 'nownwe'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1} item: ('we', 'are') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1} queue: deque(['are', 'nownwe', 'have'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1} item: ('are', 'nownwe') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1} queue: deque(['nownwe', 'have', 'now'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1} item: ('nownwe', 'have') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1} queue: deque(['have', 'now', 'reached'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'reached', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1} item: ('have', 'now') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1} queue: deque(['now', 'reached', 'slidellnthat'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1} item: ('now', 'reached') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1} queue: deque(['reached', 'slidellnthat', 'a'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1} item: ('reached', 'slidellnthat') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1} queue: deque(['slidellnthat', 'a', 'fine'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 3, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1} item: ('slidellnthat', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1} queue: deque(['a', 'fine', 'place'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 2, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1} item: ('a', 'fine') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1} queue: deque(['fine', 'place', 'the'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1} item: ('fine', 'place') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1} queue: deque(['place', 'the', 'people'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1} item: ('place', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1} queue: deque(['the', 'people', 'down'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1} item: ('the', 'people') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1} queue: deque(['people', 'down', 'there'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1} item: ('people', 'down') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1} queue: deque(['down', 'there', 'remind'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1} item: ('down', 'there') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1} queue: deque(['there', 'remind', 'me'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1} item: ('there', 'remind') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1} queue: deque(['remind', 'me', 'of'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1} item: ('remind', 'me') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1} queue: deque(['me', 'of', 'bananasnthey'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1} item: ('me', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1} queue: deque(['of', 'bananasnthey', 'come'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 2, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1} item: ('of', 'bananasnthey') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1} queue: deque(['bananasnthey', 'come', 'and'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1} item: ('bananasnthey', 'come') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1} queue: deque(['come', 'and', 'go'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1} item: ('come', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1} queue: deque(['and', 'go', 'in'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1} item: ('and', 'go') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1} queue: deque(['go', 'in', 'bunches'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1} item: ('go', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1} queue: deque(['in', 'bunches', 'ndell'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'ndell', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1} item: ('in', 'bunches') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1} queue: deque(['bunches', 'ndell', 'used'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'ndell', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'used', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 3, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1} item: ('bunches', 'ndell') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1} queue: deque(['ndell', 'used', 'to'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'ndell', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'used', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 1, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1} item: ('ndell', 'used') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1} queue: deque(['used', 'to', 'be'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'ndell', 'of', 'somewhere', 'train', 'while', 'saysnim', 'miles', 'when', 'used', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1} item: ('used', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1} queue: deque(['to', 'be', 'noted'], maxlen=3) vocab: {'tothis', 'road', 'everynwhere', 'come', 'ride', 'now', 'to', 'accordning', 'there', 'figures', 'bananasnthey', 'than', 'bunches', 'it', 'you', 'evernwas', 'nearner', 'nowherenhe', 'nownwe', 'this', 'in', 'fiom', 'your', 'which', 'place', 'go', 'its', 'well', 'remind', 'i', 'and', 'be', 'never', 'five', 'fine', 'down', 'left', 'came', 'is', 'have', 'hear', 'are', 'last', 'people', 'wenwere', 'was', 'can', 'a', 'where', 'anywhere', 'reached', 'slidellnthat', 'ndell', 'of', 'somewhere', 'noted', 'train', 'while', 'saysnim', 'miles', 'when', 'used', 'that', 'says', 'stops', 'myselfnwhere', 'glad', 'but', 'the', 'me', 'first', 'elsewherenfrom', 'myself', 'we', 'unnless', 'on'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1} item: ('to', 'be') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1} queue: deque(['be', 'noted', 'for'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1} item: ('be', 'noted') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1} queue: deque(['noted', 'for', 'her'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1, 'her': 1} item: ('noted', 'for') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1} queue: deque(['for', 'her', 'toughnpeople'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 1, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1, 'her': 1, 'toughnpeople': 1} item: ('for', 'her') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1} queue: deque(['her', 'toughnpeople', 'now'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1, 'her': 1, 'toughnpeople': 1} item: ('her', 'toughnpeople') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1, ('her', 'toughnpeople'): 1} queue: deque(['toughnpeople', 'now', 'she'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 3, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1, 'her': 1, 'toughnpeople': 1, 'she': 1} item: ('toughnpeople', 'now') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1} queue: deque(['now', 'she', 'is'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 1, 'for': 1, 'her': 1, 'toughnpeople': 1, 'she': 1} item: ('now', 'she') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1} queue: deque(['she', 'is', 'noted'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 1, 'her': 1, 'toughnpeople': 1, 'she': 1} item: ('she', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1} queue: deque(['is', 'noted', 'for'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1} item: ('is', 'noted') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 1, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1} queue: deque(['noted', 'for', 'bentough'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1} item: ('noted', 'for') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1} queue: deque(['for', 'bentough', 'steaks'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 1, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1} item: ('for', 'bentough') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1} queue: deque(['bentough', 'steaks', 'well'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 4, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1} item: ('bentough', 'steaks') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1} queue: deque(['steaks', 'well', 'i'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1} item: ('steaks', 'well') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 1, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1} queue: deque(['well', 'i', 'certainly'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1} item: ('well', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1} queue: deque(['i', 'certainly', 'gotnone'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 1, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1} item: ('i', 'certainly') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1} queue: deque(['certainly', 'gotnone', 'there'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 1, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1} item: ('certainly', 'gotnone') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1} queue: deque(['gotnone', 'there', 'when'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 3, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1} item: ('gotnone', 'there') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1} queue: deque(['there', 'when', 'the'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1} item: ('there', 'when') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1} queue: deque(['when', 'the', 'waiter'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1} item: ('when', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1} queue: deque(['the', 'waiter', 'broughtnit'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 1, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1} item: ('the', 'waiter') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1} queue: deque(['waiter', 'broughtnit', 'in'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 1, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1} item: ('waiter', 'broughtnit') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1} queue: deque(['broughtnit', 'in', 'it'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 2, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1} item: ('broughtnit', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1} queue: deque(['in', 'it', 'was'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1} item: ('in', 'it') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1} queue: deque(['it', 'was', 'so'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1} item: ('it', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1} queue: deque(['was', 'so', 'small'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 5, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1} item: ('was', 'so') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1} queue: deque(['so', 'small', 'i'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1} item: ('so', 'small') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1} queue: deque(['small', 'i', 'thought'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1} item: ('small', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1} queue: deque(['i', 'thought', 'itnwas'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 1, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1} item: ('i', 'thought') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1} queue: deque(['thought', 'itnwas', 'a'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1} item: ('thought', 'itnwas') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1} queue: deque(['itnwas', 'a', 'crack'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 2, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1} item: ('itnwas', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1} queue: deque(['a', 'crack', 'in'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 4, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1} item: ('a', 'crack') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1} queue: deque(['crack', 'in', 'the'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1} item: ('crack', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1} queue: deque(['in', 'the', 'plate'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 6, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1} item: ('in', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1} queue: deque(['the', 'plate', 'i'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1} item: ('the', 'plate') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1} queue: deque(['plate', 'i', 'skidnwaiter'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1} item: ('plate', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1} queue: deque(['i', 'skidnwaiter', 'what'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1} item: ('i', 'skidnwaiter') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1} queue: deque(['skidnwaiter', 'what', 'else'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 1, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1} item: ('skidnwaiter', 'what') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1} queue: deque(['what', 'else', 'have'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 1, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1} item: ('what', 'else') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1} queue: deque(['else', 'have', 'you'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1} item: ('else', 'have') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1} queue: deque(['have', 'you', 'got'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1} item: ('have', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1} queue: deque(['you', 'got', '+henbrought'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 1, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1} item: ('you', 'got') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1} queue: deque(['got', '+henbrought', 'me'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 3, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1} item: ('got', '+henbrought') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1} queue: deque(['+henbrought', 'me', 'in'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1} item: ('+henbrought', 'me') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1} queue: deque(['me', 'in', 'two'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1} item: ('me', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1} queue: deque(['in', 'two', 'codfish'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 3, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1} item: ('in', 'two') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1} queue: deque(['two', 'codfish', 'and'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1} item: ('two', 'codfish') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1} queue: deque(['codfish', 'and', 'onensmelt'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 7, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1} item: ('codfish', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1} queue: deque(['and', 'onensmelt', 'i'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1} item: ('and', 'onensmelt') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1} queue: deque(['onensmelt', 'i', 'said'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 1, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1} item: ('onensmelt', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1} queue: deque(['i', 'said', 'waiter'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 2, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1} item: ('i', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1} queue: deque(['said', 'waiter', 'have'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 2, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1} item: ('said', 'waiter') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1} queue: deque(['waiter', 'have', 'you'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1} item: ('waiter', 'have') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 1, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1} queue: deque(['have', 'you', 'gotnpigs'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'gotnpigs', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1, 'gotnpigs': 1} item: ('have', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1} queue: deque(['you', 'gotnpigs', 'feet'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1, 'gotnpigs': 1, 'feet': 1} item: ('you', 'gotnpigs') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1} queue: deque(['gotnpigs', 'feet', 'he'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 1, 'gotnpigs': 1, 'feet': 1, 'he': 1} item: ('gotnpigs', 'feet') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1} queue: deque(['feet', 'he', 'said'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1} item: ('feet', 'he') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1} queue: deque(['he', 'said', 'no'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1} item: ('he', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1} queue: deque(['said', 'no', 'rheumatismnmakes'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 2, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1} item: ('said', 'no') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1} queue: deque(['no', 'rheumatismnmakes', 'me'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1} item: ('no', 'rheumatismnmakes') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1} queue: deque(['rheumatismnmakes', 'me', 'walk'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 1, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1} item: ('rheumatismnmakes', 'me') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1} queue: deque(['me', 'walk', 'that'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1} item: ('me', 'walk') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1} queue: deque(['walk', 'that', 'way'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 8, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1} item: ('walk', 'that') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1} queue: deque(['that', 'way', 'i'], maxlen=3) vocab: {'ride', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1} item: ('that', 'way') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1} queue: deque(['way', 'i', 'saldnhow'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 4, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1} item: ('way', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1} queue: deque(['i', 'saldnhow', 'is'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 5, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1} item: ('i', 'saldnhow') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1} queue: deque(['saldnhow', 'is', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 6, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1} item: ('saldnhow', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 1, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1} queue: deque(['is', 'the', 'pumpkin'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 6, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1} item: ('is', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1} queue: deque(['the', 'pumpkin', 'pieliesaidnit'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 6, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1} item: ('the', 'pumpkin') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1} queue: deque(['pumpkin', 'pieliesaidnit', 'all'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 6, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1} item: ('pumpkin', 'pieliesaidnit') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1} queue: deque(['pieliesaidnit', 'all', 'squash'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 6, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1} item: ('pieliesaidnit', 'all') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1} queue: deque(['all', 'squash', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1} item: ('all', 'squash') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1} queue: deque(['squash', 'the', 'best'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 9, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1} item: ('squash', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1} queue: deque(['the', 'best', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1} item: ('the', 'best') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1} queue: deque(['best', 'i', 'could'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1} item: ('best', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1} queue: deque(['i', 'could', 'getnin'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 2, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1} item: ('i', 'could') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1} queue: deque(['could', 'getnin', 'that'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1} item: ('could', 'getnin') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1} queue: deque(['getnin', 'that', 'hotel'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 3, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1} item: ('getnin', 'that') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1} queue: deque(['that', 'hotel', 'was'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 2, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1} item: ('that', 'hotel') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1} queue: deque(['hotel', 'was', 'a'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1} item: ('hotel', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1} queue: deque(['was', 'a', 'soup'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1} item: ('was', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1} queue: deque(['a', 'soup', 'sandwichnafter'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 7, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1} item: ('a', 'soup') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1} queue: deque(['soup', 'sandwichnafter', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 8, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1} item: ('soup', 'sandwichnafter') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1} queue: deque(['sandwichnafter', 'the', 'table'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 8, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1} item: ('sandwichnafter', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1} queue: deque(['the', 'table', 'battle'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 8, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1} item: ('the', 'table') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1} queue: deque(['table', 'battle', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 2, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1} item: ('table', 'battle') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1} queue: deque(['battle', 'the', 'waiter'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1} item: ('battle', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 1, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1} queue: deque(['the', 'waiter', 'andni'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1} item: ('the', 'waiter') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1} queue: deque(['waiter', 'andni', 'signed'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1} item: ('waiter', 'andni') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1} queue: deque(['andni', 'signed', 'an'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'myself', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1} item: ('andni', 'signed') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1} queue: deque(['signed', 'an', 'armistice'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 10, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1} item: ('signed', 'an') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1} queue: deque(['an', 'armistice', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1} item: ('an', 'armistice') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1} queue: deque(['armistice', 'i', 'then'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1} item: ('armistice', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1} queue: deque(['i', 'then', 'wentnover'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 4, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1} item: ('i', 'then') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1} queue: deque(['then', 'wentnover', 'to'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 9, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1} item: ('then', 'wentnover') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1} queue: deque(['wentnover', 'to', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 1, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1} item: ('wentnover', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1} queue: deque(['to', 'the', 'hotel'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1} item: ('to', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1} queue: deque(['the', 'hotel', 'clerk'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 4, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1} item: ('the', 'hotel') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1} queue: deque(['hotel', 'clerk', 'and'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1} item: ('hotel', 'clerk') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1} queue: deque(['clerk', 'and', 'asked'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1} item: ('clerk', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1} queue: deque(['and', 'asked', 'forna'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1} item: ('and', 'asked') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1} queue: deque(['asked', 'forna', 'room'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 1, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1} item: ('asked', 'forna') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1} queue: deque(['forna', 'room', 'he'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 2, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1} item: ('forna', 'room') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1} queue: deque(['room', 'he', 'said'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1} item: ('room', 'he') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 1, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1} queue: deque(['he', 'said', 'with'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1} item: ('he', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1} queue: deque(['said', 'with', 'or'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1, 'or': 1} item: ('said', 'with') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1} queue: deque(['with', 'or', 'without'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1, 'or': 1, 'without': 1} item: ('with', 'or') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1, ('with', 'or'): 1} queue: deque(['or', 'without', 'anbed'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 11, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1, 'or': 1, 'without': 1, 'anbed': 1} item: ('or', 'without') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1, ('with', 'or'): 1, ('or', 'without'): 1} queue: deque(['without', 'anbed', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 3, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1, 'or': 1, 'without': 1, 'anbed': 1} item: ('without', 'anbed') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1} queue: deque(['anbed', 'i', 'said'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 1, 'or': 1, 'without': 1, 'anbed': 1} item: ('anbed', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 1, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1} queue: deque(['i', 'said', 'with'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 3, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1} item: ('i', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 1, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1} queue: deque(['said', 'with', 'a'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1} item: ('said', 'with') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1} queue: deque(['with', 'a', 'bed'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 2, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1} item: ('with', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1} queue: deque(['a', 'bed', 'he'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1} item: ('a', 'bed') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1} queue: deque(['bed', 'he', 'saidni'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1} item: ('bed', 'he') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1} queue: deque(['he', 'saidni', 'dont'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1, 'dont': 1} item: ('he', 'saidni') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1} queue: deque(['saidni', 'dont', 'think'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 12, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1, 'dont': 1, 'think': 1} item: ('saidni', 'dont') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1} queue: deque(['dont', 'think', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 3, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1, 'dont': 1, 'think': 1} item: ('dont', 'think') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1} queue: deque(['think', 'i', 'have'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 4, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1, 'dont': 1, 'think': 1} item: ('think', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1} queue: deque(['i', 'have', 'a'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 1, 'saidni': 1, 'dont': 1, 'think': 1} item: ('i', 'have') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1} queue: deque(['have', 'a', 'bed'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1} item: ('have', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 1, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1} queue: deque(['a', 'bed', 'longnenough'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 2, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('a', 'bed') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1} queue: deque(['bed', 'longnenough', 'for'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 3, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('bed', 'longnenough') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1} queue: deque(['longnenough', 'for', 'you'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 13, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('longnenough', 'for') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1} queue: deque(['for', 'you', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 4, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('for', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1} queue: deque(['you', 'i', 'said'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 2, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('you', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 2, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1} queue: deque(['i', 'said', 'well'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1} item: ('i', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1} queue: deque(['said', 'well', 'illnaddtwo'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1} item: ('said', 'well') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1} queue: deque(['well', 'illnaddtwo', 'feettoitwhenigetinitnhe'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1} item: ('well', 'illnaddtwo') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1} queue: deque(['illnaddtwo', 'feettoitwhenigetinitnhe', 'gave'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 3, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1} item: ('illnaddtwo', 'feettoitwhenigetinitnhe') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1} queue: deque(['feettoitwhenigetinitnhe', 'gave', 'me'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 5, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1} item: ('feettoitwhenigetinitnhe', 'gave') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1} queue: deque(['gave', 'me', 'a'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1} item: ('gave', 'me') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1} queue: deque(['me', 'a', 'lovely'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 1, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1} item: ('me', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1} queue: deque(['a', 'lovely', 'room'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 1, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1} item: ('a', 'lovely') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1} queue: deque(['lovely', 'room', 'on'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1} item: ('lovely', 'room') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1} queue: deque(['room', 'on', 'thentop'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1} item: ('room', 'on') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1} queue: deque(['on', 'thentop', 'floor'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 2, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1} item: ('on', 'thentop') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1} queue: deque(['thentop', 'floor', 'it'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 4, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1} item: ('thentop', 'floor') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1} queue: deque(['floor', 'it', 'was'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1} item: ('floor', 'it') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 1, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1} queue: deque(['it', 'was', 'one'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 1, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1} item: ('it', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1} queue: deque(['was', 'one', 'of'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1} item: ('was', 'one') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1} queue: deque(['one', 'of', 'those'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1} item: ('one', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1} queue: deque(['of', 'those', 'roomsnthat'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1} item: ('of', 'those') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1} queue: deque(['those', 'roomsnthat', 'stands'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 2, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1} item: ('those', 'roomsnthat') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1} queue: deque(['roomsnthat', 'stands', 'on'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1} item: ('roomsnthat', 'stands') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1} queue: deque(['stands', 'on', 'each'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1} item: ('stands', 'on') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1} queue: deque(['on', 'each', 'side'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1} item: ('on', 'each') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1} queue: deque(['each', 'side', 'if'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1} item: ('each', 'side') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1} queue: deque(['side', 'if', 'younhappen'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 5, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1} item: ('side', 'if') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1} queue: deque(['if', 'younhappen', 'to'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1} item: ('if', 'younhappen') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1} queue: deque(['younhappen', 'to', 'get'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1} item: ('younhappen', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1} queue: deque(['to', 'get', 'up'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 4, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1} item: ('to', 'get') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1} queue: deque(['get', 'up', 'in'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 10, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1} item: ('get', 'up') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1} queue: deque(['up', 'in', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1} item: ('up', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 1, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1} queue: deque(['in', 'the', 'middle'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1} item: ('in', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1} queue: deque(['the', 'middle', 'ofnthe'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1} item: ('the', 'middle') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1} queue: deque(['middle', 'ofnthe', 'night'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 4, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1} item: ('middle', 'ofnthe') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1} queue: deque(['ofnthe', 'night', 'you'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1} item: ('ofnthe', 'night') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1} queue: deque(['night', 'you', 'want'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 6, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1} item: ('night', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1} queue: deque(['you', 'want', 'to'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 2, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1} item: ('you', 'want') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1} queue: deque(['want', 'to', 'be'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1} item: ('want', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 1, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1} queue: deque(['to', 'be', 'sure'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1} item: ('to', 'be') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1} queue: deque(['be', 'sure', 'andnget'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 1, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('be', 'sure') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1} queue: deque(['sure', 'andnget', 'up'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 5, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('sure', 'andnget') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1} queue: deque(['andnget', 'up', 'in'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 11, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('andnget', 'up') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 1, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1} queue: deque(['up', 'in', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 12, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 1, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('up', 'in') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 2, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1} queue: deque(['in', 'the', 'middle'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 12, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 2, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('in', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 1, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1} queue: deque(['the', 'middle', 'of'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 12, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('the', 'middle') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1} queue: deque(['middle', 'of', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1} item: ('middle', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1} queue: deque(['of', 'the', 'roomnthat'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 1, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1} item: ('of', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1} queue: deque(['the', 'roomnthat', 'night'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 14, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1} item: ('the', 'roomnthat') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1} queue: deque(['roomnthat', 'night', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 15, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1} item: ('roomnthat', 'night') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1} queue: deque(['night', 'i', 'dreamt'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 15, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1} item: ('night', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1} queue: deque(['i', 'dreamt', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 16, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 5, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1} item: ('i', 'dreamt') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1} queue: deque(['dreamt', 'i', 'was'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 16, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1} item: ('dreamt', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 1, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1} queue: deque(['i', 'was', 'eatingnflannel'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 16, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1} item: ('i', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1} queue: deque(['was', 'eatingnflannel', 'cakes'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 16, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 2, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1} item: ('was', 'eatingnflannel') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1} queue: deque(['eatingnflannel', 'cakes', 'when'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 16, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1} item: ('eatingnflannel', 'cakes') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1} queue: deque(['cakes', 'when', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1} item: ('cakes', 'when') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1} queue: deque(['when', 'i', 'woke'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 2, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1} item: ('when', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1} queue: deque(['i', 'woke', 'up'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1} item: ('i', 'woke') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1} queue: deque(['woke', 'up', 'halfnof'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 13, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1} item: ('woke', 'up') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1} queue: deque(['up', 'halfnof', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1} item: ('up', 'halfnof') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1} queue: deque(['halfnof', 'the', 'blanket'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 6, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1} item: ('halfnof', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1} queue: deque(['the', 'blanket', 'was'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1} item: ('the', 'blanket') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1} queue: deque(['blanket', 'was', 'gone'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 17, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1} item: ('blanket', 'was') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1} queue: deque(['was', 'gone', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1} item: ('was', 'gone') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1} queue: deque(['gone', 'i', 'mustnhave'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 1, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1} item: ('gone', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1} queue: deque(['i', 'mustnhave', 'got'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 3, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1} item: ('i', 'mustnhave') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1} queue: deque(['mustnhave', 'got', 'up'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 3, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1} item: ('mustnhave', 'got') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1} queue: deque(['got', 'up', 'on'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 14, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1} item: ('got', 'up') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1} queue: deque(['up', 'on', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1} item: ('up', 'on') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1} queue: deque(['on', 'the', 'wrong'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 1, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1} item: ('on', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1} queue: deque(['the', 'wrong', 'side'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 3, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1} item: ('the', 'wrong') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1} queue: deque(['wrong', 'side', 'of'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1} item: ('wrong', 'side') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1} queue: deque(['side', 'of', 'thenbed'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 3, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1} item: ('side', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1} queue: deque(['of', 'thenbed', 'for'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1} item: ('of', 'thenbed') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1} queue: deque(['thenbed', 'for', 'next'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1} item: ('thenbed', 'for') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1} queue: deque(['for', 'next', 'morning'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 18, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1} item: ('for', 'next') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1} queue: deque(['next', 'morning', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 19, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1} item: ('next', 'morning') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1} queue: deque(['morning', 'i', 'had'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 19, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 1, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1} item: ('morning', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1} queue: deque(['i', 'had', 'an'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 19, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1} item: ('i', 'had') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1} queue: deque(['had', 'an', 'awfulnheadache'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 19, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1} item: ('had', 'an') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1} queue: deque(['an', 'awfulnheadache', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1} item: ('an', 'awfulnheadache') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1} queue: deque(['awfulnheadache', 'i', 'told'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 15, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1} item: ('awfulnheadache', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1} queue: deque(['i', 'told', 'the'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1} item: ('i', 'told') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1} queue: deque(['told', 'the', 'manager'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1} item: ('told', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1} queue: deque(['the', 'manager', 'aboutnit'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 3, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1} item: ('the', 'manager') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1} queue: deque(['manager', 'aboutnit', 'he'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 5, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1} item: ('manager', 'aboutnit') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1} queue: deque(['aboutnit', 'he', 'said'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 5, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 6, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1} item: ('aboutnit', 'he') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 2, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1} queue: deque(['he', 'said', 'you'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 4, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 6, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1} item: ('he', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1} queue: deque(['said', 'you', 'have'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 6, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1} item: ('said', 'you') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1} queue: deque(['you', 'have', 'rheumaticnpains'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 20, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 6, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('you', 'have') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1} queue: deque(['have', 'rheumaticnpains', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 21, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 6, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('have', 'rheumaticnpains') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1} queue: deque(['rheumaticnpains', 'i', 'said'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 21, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 1, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('rheumaticnpains', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 3, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1} queue: deque(['i', 'said', 'no'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 21, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('i', 'said') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 1, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1} queue: deque(['said', 'no', 'i'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 22, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 1, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('said', 'no') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1} queue: deque(['no', 'i', 'think'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 22, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 3, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('no', 'i') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1} queue: deque(['i', 'think', 'it'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 5, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 22, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 4, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('i', 'think') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1} queue: deque(['think', 'it', 'is'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 6, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 22, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 4, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1} item: ('think', 'it') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1} queue: deque(['it', 'is', 'onnof'], maxlen=3) vocab: {'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'next', 'this', 'small', 'anbed', 'certainly', 'room', 'get', 'rheumatismnmakes', 'thentop', 'her', 'mustnhave', 'floor', 'bed', 'last', 'could', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'sandwichnafter', 'signed', 'somewhere', 'train', 'wentnover', 'used', 'that', 'blanket', 'the', 'me', 'armistice', 'myself', 'then', 'aboutnit', 'an', 'roomsnthat', 'dreamt', 'road', 'crack', 'for', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'which', 'those', 'said', 'morning', 'skidnwaiter', 'well', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'soup', 'can', 'plate', 'longnenough', 'miles', 'when', 'bentough', 'clerk', 'got', 'so', 'she', 'think', '+henbrought', 'we', 'side', 'up', 'tothis', 'everynwhere', 'come', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'rheumaticnpains', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'itnwas', 'noted', 'steaks', 'while', 'says', 'glad', 'with', 'toughnpeople', 'unnless', 'sure', 'on', 'no', 'now', 'want', 'to', 'awfulnheadache', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'place', 'go', 'its', 'else', 'andnget', 'manager', 'way', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'woke', 'he', 'all', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'feet', 'stops', 'myselfnwhere', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 16, 'last': 1, 'place': 4, 'tothis': 1, 'and': 5, 'this': 3, 'is': 6, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 22, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 1, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 4, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 7, 'hear': 1, 'that': 3, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 2, 'reached': 1, 'slidellnthat': 1, 'a': 6, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 4, 'bananasnthey': 1, 'come': 1, 'go': 1, 'in': 6, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 1, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 4, 'no': 2, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 1, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 1, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 2, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 2, 'with': 2, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 1, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 1, 'morning': 1, 'had': 1, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1} item: ('it', 'is') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 1} queue:
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
item: ('bringhimselfninto', 'a') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1} queue: deque(['a', 'proper', 'perspective'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 3, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 1, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1} item: ('a', 'proper') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1} queue: deque(['proper', 'perspective', 'with'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 1, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1} item: ('proper', 'perspective') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1} queue: deque(['perspective', 'with', 'thosenminor'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 1, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1} item: ('perspective', 'with') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1} queue: deque(['with', 'thosenminor', 'senatorial'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1} item: ('with', 'thosenminor') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1} queue: deque(['thosenminor', 'senatorial', 'duties'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1} item: ('thosenminor', 'senatorial') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1} queue: deque(['senatorial', 'duties', 'such'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 1, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1} item: ('senatorial', 'duties') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1} queue: deque(['duties', 'such', 'as'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 5, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1} item: ('duties', 'such') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1} queue: deque(['such', 'as', 'tho'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1} item: ('such', 'as') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1} queue: deque(['as', 'tho', 'fillning'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 8, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1} item: ('as', 'tho') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1} queue: deque(['tho', 'fillning', 'of'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1} item: ('tho', 'fillning') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1} queue: deque(['fillning', 'of', 'offices'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 1, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1} item: ('fillning', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1} queue: deque(['of', 'offices', 'which'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1} item: ('of', 'offices') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1} queue: deque(['offices', 'which', 'bulk'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1} item: ('offices', 'which') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1} queue: deque(['which', 'bulk', 'hugelynupon'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 18, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1} item: ('which', 'bulk') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1} queue: deque(['bulk', 'hugelynupon', 'the'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 19, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1} item: ('bulk', 'hugelynupon') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1} queue: deque(['hugelynupon', 'the', 'horizons'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'horizons', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 19, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 9, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1} item: ('hugelynupon', 'the') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1} queue: deque(['the', 'horizons', 'of'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'horizons', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 19, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 10, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 6, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1} item: ('the', 'horizons') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1} queue: deque(['horizons', 'of', 'tho'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'horizons', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 19, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 10, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 7, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1} item: ('horizons', 'of') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 1, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1} queue: deque(['of', 'tho', 'flatts'], maxlen=3) vocab: {'proper', 'states', 'ride', 'saldnhow', 'there', 'feettoitwhenigetinitnhe', 'bunches', 'being', 'next', 'this', 'small', 'anbed', 'certainly', 'who', 'thosenminor', 'room', 'get', 'isigovemed', 'rheumatismnmakes', 'makingnsuch', 'thentop', 'tonthink', 'her', 'mustnhave', 'very', 'floor', 'parcels', 'bulk', 'bed', 'last', 'could', 'statesman', 'saidni', 'each', 'anywhere', 'reached', 'forna', 'fortunqnwhich', 'pains', 'sandwichnafter', 'empirqnstate', 'six', 'at', 'signed', 'somewhere', 'offices', 'obeednattempt', 'political', 'train', 'tho', 'wentnover', 'declared', 'used', 'country', 'that', 'new', 'blanket', 'ansmaa', 'the', 'me', 'armistice', 'myself', 'hag', 'then', 'aboutnit', 'scat', 'senatorial', 'an', 'roomsnthat', 'dreamt', 'road', 'longer', 'crack', 'for', 'set', 'ideas', 'figures', 'one', 'eatingnflannel', 'such', 'it', 'dont', 'evernwas', 'table', 'nowherenhe', 'thenbed', 'stands', 'piatt', 'which', 'those', 'said', 'boot', 'represented', 'morning', 'skidnwaiter', 'senate', 'well', 'his', 'attic', 'imagine', 'legislature', 'years', 'younfcavo', 'be', 'fine', 'have', 'hear', 'are', 'battle', 'grown', 'bootnto', 'soup', 'bringhimselfninto', 'can', 'plate', 'post', 'longnenough', 'atntho', 'miles', 'ownnwho', 'horizons', 'when', 'bentough', 'clerk', 'seat', 'outset', 'got', 'so', 'she', 'think', 'use', 'unitned', '+henbrought', 'we', 'side', 'up', 'mr', 'noticento', 'tothis', 'everynwhere', 'come', 'somonmental', 'perspective', 'without', 'accordning', 'gave', 'told', 'you', 'nearner', 'mb', 'pieliesaidnit', 'lovely', 'in', 'hotel', 'broughtnit', 'fiom', 'had', 'onensmelt', 'thought', 'younhappen', 'best', 'remind', 'walk', 'or', 'nationally', 'rheumaticnpains', 'giving', 'measure', 'never', 'five', 'cakes', 'came', 'is', 'gotnone', 'was', 'a', 'good', 'where', 'slidellnthat', 'ndell', 'waiter', 'if', 'night', 'of', 'aminthemorningsonthey', 'as', 'itnwas', 'willnfor', 'noted', 'steaks', 'while', 'thenbreakfast', 'tongetupat', 'express', 'compannies', 'says', 'own', 'glad', 'with', 'convictions', 'toughnpeople', 'duties', 'elihu', 'unnless', 'sure', 'on', 'forntho', 'no', 'by', 'york', 'now', 'want', 'to', 'awfulnheadache', 'acncredited', 'reasoned', 'politicaln', 'bananasnthey', 'than', 'onnof', 'squash', 'nownwe', 'middle', 'andni', 'your', 'ho', 'nad', 'place', 'go', 'its', 'else', 'andnget', 'occupied', 'manager', 'way', 'bo', 'baa', 'wrong', 'i', 'and', 'down', 'illnaddtwo', 'ofnthe', 'left', 'pumpkin', 'halfnof', 'people', 'what', 'wenwere', 'flatts', 'getnin', 'eflort', 'woke', 'he', 'all', 'thereby', 'sheet', 'asked', 'saysnim', 'roomnthat', 'gotnpigs', 'address', 'feet', 'fillning', 'stops', 'myselfnwhere', 'accustomed', 'but', 'codfish', 'hugelynupon', 'first', 'elsewherenfrom', 'two', 'gone'} unigram: {'came': 1, 'fiom': 1, 'the': 19, 'last': 2, 'place': 4, 'tothis': 1, 'and': 6, 'this': 3, 'is': 7, 'where': 3, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 23, 'evernwas': 1, 'on': 4, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 3, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 5, 'never': 1, 'unnless': 1, 'its': 1, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 11, 'hear': 1, 'that': 8, 'but': 1, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 1, 'myselfnwhere': 1, 'was': 7, 'which': 2, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 3, 'we': 1, 'are': 1, 'nownwe': 1, 'have': 5, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 11, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 10, 'bananasnthey': 1, 'come': 2, 'go': 1, 'in': 7, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 4, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 2, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 1, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 1, 'codfish': 1, 'onensmelt': 1, 'said': 7, 'gotnpigs': 1, 'feet': 1, 'he': 5, 'no': 3, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 1, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 2, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 3, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 4, 'or': 1, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 2, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 1, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 1, 'side': 2, 'if': 1, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 2, 'awfulnheadache': 1, 'told': 1, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 1, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 7, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 1, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 3, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 1, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 1, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 2, 'hag': 1, 'convictions': 1, 'his': 1, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 1, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1} item: ('of', 'tho') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 2, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 3, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 1, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 1, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 1, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 1, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 1, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 2, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1} queue: deque(['say', 'that', 'jesse'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 30, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 2, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 1, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1} item: ('say', 'that') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1} queue: deque(['that', 'jesse', 'and'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 2, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 1, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1} item: ('that', 'jesse') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1} queue: deque(['jesse', 'and', 'ruahnand'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 2, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 1, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1} item: ('jesse', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1} queue: deque(['and', 'ruahnand', 'willie'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 2, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 1, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1} item: ('and', 'ruahnand') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1} queue: deque(['ruahnand', 'willie', 'should'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 2, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1} item: ('ruahnand', 'willie') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1} queue: deque(['willie', 'should', 'go'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 27, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1} item: ('willie', 'should') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 1, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1} queue: deque(['should', 'go', 'to'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1} item: ('should', 'go') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1} queue: deque(['go', 'to', 'sabbathnschool'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 2, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1} item: ('go', 'to') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1} queue: deque(['to', 'sabbathnschool', 'but'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1} item: ('to', 'sabbathnschool') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1} queue: deque(['sabbathnschool', 'but', 'george'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 31, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1} item: ('sabbathnschool', 'but') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1} queue: deque(['but', 'george', 'and'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1} item: ('but', 'george') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1} queue: deque(['george', 'and', 'james'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1} item: ('george', 'and') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1} queue: deque(['and', 'james', 'andnmarj'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 2, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1} item: ('and', 'james') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1} queue: deque(['james', 'andnmarj', 'are'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 2, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1} item: ('james', 'andnmarj') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1} queue: deque(['andnmarj', 'are', 'too'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1} item: ('andnmarj', 'are') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1} queue: deque(['are', 'too', 'old'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 1, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1} item: ('are', 'too') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1} queue: deque(['too', 'old', 'our'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1} item: ('too', 'old') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1, ('too', 'old'): 1} queue: deque(['old', 'our', 'hair'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'hair', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 4, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1, 'hair': 1} item: ('old', 'our') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1, ('too', 'old'): 1, ('old', 'our'): 1} queue: deque(['our', 'hair', 'may'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'hair', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 5, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1, 'hair': 1} item: ('our', 'hair') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1, ('too', 'old'): 1, ('old', 'our'): 1, ('our', 'hair'): 1} queue: deque(['hair', 'may', 'bencomp'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'hair', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'bencomp', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 5, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1, 'hair': 1, 'bencomp': 1} item: ('hair', 'may') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1, ('too', 'old'): 1, ('old', 'our'): 1, ('our', 'hair'): 1, ('hair', 'may'): 1} queue: deque(['may', 'bencomp', 'silvered'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'hair', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'silvered', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'bencomp', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 5, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1, 'hair': 1, 'bencomp': 1, 'silvered': 1} item: ('may', 'bencomp') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so', 'small'): 1, ('small', 'i'): 1, ('i', 'thought'): 1, ('thought', 'itnwas'): 1, ('itnwas', 'a'): 1, ('a', 'crack'): 1, ('crack', 'in'): 1, ('in', 'the'): 5, ('the', 'plate'): 1, ('plate', 'i'): 1, ('i', 'skidnwaiter'): 1, ('skidnwaiter', 'what'): 1, ('what', 'else'): 1, ('else', 'have'): 1, ('have', 'you'): 2, ('you', 'got'): 1, ('got', '+henbrought'): 1, ('+henbrought', 'me'): 1, ('me', 'in'): 1, ('in', 'two'): 1, ('two', 'codfish'): 1, ('codfish', 'and'): 1, ('and', 'onensmelt'): 1, ('onensmelt', 'i'): 1, ('i', 'said'): 4, ('said', 'waiter'): 1, ('waiter', 'have'): 1, ('you', 'gotnpigs'): 1, ('gotnpigs', 'feet'): 1, ('feet', 'he'): 1, ('he', 'said'): 3, ('said', 'no'): 2, ('no', 'rheumatismnmakes'): 1, ('rheumatismnmakes', 'me'): 1, ('me', 'walk'): 1, ('walk', 'that'): 1, ('that', 'way'): 1, ('way', 'i'): 1, ('i', 'saldnhow'): 1, ('saldnhow', 'is'): 1, ('the', 'pumpkin'): 1, ('pumpkin', 'pieliesaidnit'): 1, ('pieliesaidnit', 'all'): 1, ('all', 'squash'): 1, ('squash', 'the'): 1, ('the', 'best'): 1, ('best', 'i'): 1, ('i', 'could'): 1, ('could', 'getnin'): 1, ('getnin', 'that'): 1, ('that', 'hotel'): 1, ('hotel', 'was'): 1, ('was', 'a'): 1, ('a', 'soup'): 1, ('soup', 'sandwichnafter'): 1, ('sandwichnafter', 'the'): 1, ('the', 'table'): 1, ('table', 'battle'): 1, ('battle', 'the'): 1, ('waiter', 'andni'): 1, ('andni', 'signed'): 1, ('signed', 'an'): 1, ('an', 'armistice'): 1, ('armistice', 'i'): 1, ('i', 'then'): 1, ('then', 'wentnover'): 1, ('wentnover', 'to'): 1, ('to', 'the'): 2, ('the', 'hotel'): 1, ('hotel', 'clerk'): 1, ('clerk', 'and'): 1, ('and', 'asked'): 1, ('asked', 'forna'): 1, ('forna', 'room'): 1, ('room', 'he'): 1, ('said', 'with'): 2, ('with', 'or'): 1, ('or', 'without'): 1, ('without', 'anbed'): 1, ('anbed', 'i'): 1, ('with', 'a'): 1, ('a', 'bed'): 2, ('bed', 'he'): 1, ('he', 'saidni'): 1, ('saidni', 'dont'): 1, ('dont', 'think'): 1, ('think', 'i'): 1, ('i', 'have'): 1, ('have', 'a'): 2, ('bed', 'longnenough'): 1, ('longnenough', 'for'): 1, ('for', 'you'): 1, ('you', 'i'): 1, ('said', 'well'): 1, ('well', 'illnaddtwo'): 1, ('illnaddtwo', 'feettoitwhenigetinitnhe'): 1, ('feettoitwhenigetinitnhe', 'gave'): 1, ('gave', 'me'): 1, ('me', 'a'): 1, ('a', 'lovely'): 1, ('lovely', 'room'): 1, ('room', 'on'): 1, ('on', 'thentop'): 1, ('thentop', 'floor'): 1, ('floor', 'it'): 1, ('was', 'one'): 1, ('one', 'of'): 2, ('of', 'those'): 1, ('those', 'roomsnthat'): 1, ('roomsnthat', 'stands'): 1, ('stands', 'on'): 1, ('on', 'each'): 1, ('each', 'side'): 1, ('side', 'if'): 1, ('if', 'younhappen'): 1, ('younhappen', 'to'): 1, ('to', 'get'): 1, ('get', 'up'): 1, ('up', 'in'): 2, ('the', 'middle'): 2, ('middle', 'ofnthe'): 1, ('ofnthe', 'night'): 1, ('night', 'you'): 1, ('you', 'want'): 1, ('want', 'to'): 1, ('be', 'sure'): 1, ('sure', 'andnget'): 1, ('andnget', 'up'): 1, ('middle', 'of'): 1, ('of', 'the'): 14, ('the', 'roomnthat'): 1, ('roomnthat', 'night'): 1, ('night', 'i'): 1, ('i', 'dreamt'): 1, ('dreamt', 'i'): 1, ('was', 'eatingnflannel'): 1, ('eatingnflannel', 'cakes'): 1, ('cakes', 'when'): 1, ('when', 'i'): 1, ('i', 'woke'): 1, ('woke', 'up'): 1, ('up', 'halfnof'): 1, ('halfnof', 'the'): 1, ('the', 'blanket'): 1, ('blanket', 'was'): 1, ('was', 'gone'): 1, ('gone', 'i'): 1, ('i', 'mustnhave'): 1, ('mustnhave', 'got'): 1, ('got', 'up'): 1, ('up', 'on'): 1, ('on', 'the'): 5, ('the', 'wrong'): 1, ('wrong', 'side'): 1, ('side', 'of'): 1, ('of', 'thenbed'): 1, ('thenbed', 'for'): 1, ('for', 'next'): 1, ('next', 'morning'): 1, ('morning', 'i'): 1, ('i', 'had'): 1, ('had', 'an'): 1, ('an', 'awfulnheadache'): 1, ('awfulnheadache', 'i'): 1, ('i', 'told'): 1, ('told', 'the'): 1, ('the', 'manager'): 1, ('manager', 'aboutnit'): 1, ('aboutnit', 'he'): 1, ('said', 'you'): 1, ('you', 'have'): 1, ('have', 'rheumaticnpains'): 1, ('rheumaticnpains', 'i'): 1, ('no', 'i'): 1, ('i', 'think'): 1, ('think', 'it'): 1, ('it', 'is'): 2, ('is', 'onnof'): 1, ('onnof', 'those'): 1, ('those', 'attic'): 1, ('attic', 'room'): 1, ('room', 'pains'): 1, ('pains', 'i'): 1, ('i', 'nad'): 1, ('nad', 'tongetupat'): 1, ('tongetupat', 'aminthemorningsonthey'): 1, ('aminthemorningsonthey', 'could'): 1, ('could', 'use'): 1, ('use', 'the'): 1, ('the', 'sheet'): 1, ('sheet', 'to'): 1, ('to', 'set'): 1, ('set', 'thenbreakfast'): 1, ('table', ''): 1, ('', 'mb'): 1, ('mb', 'boot'): 1, ('boot', 'political'): 1, ('political', 'obeednattempt'): 1, ('obeednattempt', 'to'): 1, ('to', 'imagine'): 1, ('imagine', 'a'): 1, ('a', 'piatt'): 1, ('piatt', 'makingnsuch'): 1, ('makingnsuch', 'an'): 1, ('an', 'address'): 1, ('address', 'as'): 1, ('as', 'that'): 1, ('that', 'of'): 1, ('of', 'elihu'): 1, ('elihu', 'bootnto'): 1, ('bootnto', 'the'): 1, ('the', 'now'): 1, ('now', 'york'): 1, ('york', 'legislature'): 1, ('legislature', 'and'): 1, ('and', 'younfcavo'): 1, ('younfcavo', 'a'): 1, ('a', 'measure'): 1, ('measure', 'of'): 1, ('of', 'tho'): 3, ('tho', 'good'): 1, ('good', 'fortunqnwhich'): 1, ('fortunqnwhich', 'baa'): 1, ('baa', 'at'): 1, ('at', 'last'): 1, ('last', 'come'): 1, ('come', 'to'): 1, ('to', 'tho'): 1, ('tho', 'empirqnstate'): 1, ('empirqnstate', 'of'): 1, ('of', 'being'): 1, ('being', 'represented'): 1, ('represented', 'in'): 1, ('in', 'tho'): 1, ('tho', 'unitned'): 1, ('unitned', 'states'): 1, ('states', 'senate'): 1, ('senate', 'by'): 1, ('by', 'a'): 1, ('a', 'statesman'): 1, ('statesman', 'atntho'): 1, ('atntho', 'very'): 1, ('very', 'outset'): 1, ('outset', 'mr'): 1, ('mr', 'boot'): 1, ('boot', 'declared'): 1, ('declared', 'forntho'): 1, ('forntho', 'parcels'): 1, ('parcels', 'post'): 1, ('post', 'thereby'): 1, ('thereby', 'giving'): 1, ('giving', 'noticento'): 1, ('noticento', 'tho'): 1, ('tho', 'country'): 1, ('country', 'that'): 1, ('that', 'tho'): 1, ('tho', 'express'): 1, ('express', 'compannies'): 1, ('compannies', 'no'): 1, ('no', 'longer'): 1, ('longer', 'own'): 1, ('own', 'a'): 1, ('a', 'senatorial'): 1, ('senatorial', 'scat'): 1, ('scat', 'acncredited'): 1, ('acncredited', 'to'): 1, ('to', 'new'): 1, ('new', 'york'): 1, ('york', 'that'): 1, ('that', 'seat'): 1, ('seat', 'willnfor'): 1, ('willnfor', 'ho'): 1, ('ho', 'next'): 1, ('next', 'six'): 1, ('six', 'years'): 1, ('years', 'bo'): 1, ('bo', 'occupied'): 1, ('occupied', 'by'): 1, ('by', 'ansmaa'): 1, ('ansmaa', 'who'): 1, ('who', 'hag'): 1, ('hag', 'convictions'): 1, ('convictions', 'of'): 1, ('of', 'his'): 1, ('his', 'ownnwho'): 1, ('ownnwho', 'isigovemed'): 1, ('isigovemed', 'by'): 1, ('by', 'reasoned'): 1, ('reasoned', 'politicaln'): 1, ('politicaln', 'ideas'): 1, ('ideas', 'who'): 1, ('who', 'had'): 1, ('had', 'grown'): 1, ('grown', 'so'): 1, ('so', 'accustomed'): 1, ('accustomed', 'tonthink'): 1, ('tonthink', 'nationally'): 1, ('nationally', 'that'): 1, ('that', 'it'): 1, ('is', 'with'): 1, ('with', 'somonmental'): 1, ('somonmental', 'eflort'): 1, ('eflort', 'that'): 1, ('that', 'he'): 1, ('he', 'can'): 1, ('can', 'bringhimselfninto'): 1, ('bringhimselfninto', 'a'): 1, ('a', 'proper'): 1, ('proper', 'perspective'): 1, ('perspective', 'with'): 1, ('with', 'thosenminor'): 1, ('thosenminor', 'senatorial'): 1, ('senatorial', 'duties'): 1, ('duties', 'such'): 1, ('such', 'as'): 1, ('as', 'tho'): 1, ('tho', 'fillning'): 1, ('fillning', 'of'): 1, ('of', 'offices'): 1, ('offices', 'which'): 1, ('which', 'bulk'): 1, ('bulk', 'hugelynupon'): 1, ('hugelynupon', 'the'): 1, ('the', 'horizons'): 1, ('horizons', 'of'): 1, ('tho', 'flatts'): 1, ('flatts', 'andntheir'): 1, ('andntheir', 'lit'): 1, ('lit', 'tho'): 1, ('tho', 'albany'): 1, ('albany', 'politicians'): 1, ('politicians', 'wenare'): 1, ('wenare', 'told'): 1, ('told', 'tried'): 1, ('tried', 'to'): 1, ('to', 'read'): 1, ('read', 'between'): 1, ('between', 'tho'): 1, ('tho', 'linesnfor'): 1, ('linesnfor', 'evidence'): 1, ('evidence', 'that'): 1, ('that', 'they'): 1, ('they', 'had'): 1, ('had', 'among'): 1, ('among', 'themna'): 1, ('themna', 'new'): 1, ('new', 'organization'): 1, ('organization', 'leader'): 1, ('leader', 'somo'): 1, ('somo', 'one'): 1, ('one', 'tonguide'): 1, ('tonguide', 'and'): 1, ('and', 'direct'): 1, ('direct', 'their'): 1, ('their', 'political'): 1, ('political', 'machinnations'): 1, ('machinnations', 'and'): 1, ('and', 'to'): 1, ('to', 'settlo'): 1, ('settlo', 'where'): 1, ('where', 'tho'): 1, ('tho', 'goodnthings'): 1, ('goodnthings', 'should'): 1, ('should', 'go'): 2, ('go', 'wo'): 1, ('wo', 'think'): 1, ('think', 'they'): 1, ('they', 'lisntened'): 1, ('lisntened', 'in'): 1, ('in', 'vain'): 1, ('vain', 'what'): 1, ('what', 'they'): 1, ('they', 'heard'): 1, ('heard', 'werentimely'): 1, ('werentimely', 'reflections'): 1, ('reflections', 'opon'): 1, ('opon', 'tho'): 1, ('tho', 'immediatenproblems'): 1, ('immediatenproblems', 'of'): 1, ('of', 'stato'): 1, ('stato', 'and'): 1, ('and', 'national'): 1, ('national', 'governnments'): 1, ('governnments', 'mixed'): 1, ('mixed', 'with'): 1, ('with', 'excellent'): 1, ('excellent', 'advice'): 1, ('advice', 'tonthe'): 1, ('tonthe', 'electorate'): 1, ('electorate', 'on'): 1, ('the', 'duty'): 2, ('duty', 'of'): 1, ('of', 'improvingnthe'): 1, ('improvingnthe', 'quality'): 1, ('quality', 'of'): 1, ('tho', 'stato'): 1, ('stato', 'legislaturesnit'): 1, ('legislaturesnit', 'must'): 1, ('must', 'have'): 1, ('have', 'been'): 1, ('been', 'something'): 1, ('something', 'of'): 1, ('of', 'a'): 1, ('a', 'novnelty'): 1, ('novnelty', 'though'): 1, ('though', 'possibly'): 1, ('possibly', 'not'): 1, ('not', 'wholly'): 1, ('wholly', 'refreshlin'): 1, ('refreshlin', 'gnto'): 1, ('gnto', 'political'): 1, ('', ''): 1, ('', 'whenever'): 1, ('whenever', 'any'): 1, ('any', 'prize'): 1, ('prize', 'property'): 1, ('property', 'shall'): 1, ('shall', 'condemn'): 1, ('condemn', 'appeals'): 1, ('appeals', 'from'): 1, ('from', 'the'): 2, ('the', 'district'): 5, ('district', 'courts'): 1, ('courts', 'of'): 1, ('the', 'unitened'): 1, ('unitened', 'or'): 1, ('or', 'shall'): 1, ('shall', 'at'): 1, ('at', 'any'): 1, ('any', 'stage'): 1, ('stage', 'of'): 1, ('the', 'proceedings'): 1, ('proceedings', 'be'): 1, ('be', 'j'): 1, ('j', 'state'): 1, ('state', 'in'): 1, ('in', 'priae'): 1, ('priae', 'causes'): 1, ('causes', 'shall'): 1, ('shall', 'be'): 3, ('be', 'directly'): 1, ('directly', 'to'): 1, ('to', 'thnfoundiy'): 1, ('thnfoundiy', 'the'): 1, ('the', '<'): 2, ('<', 't'): 1, ('t', '>'): 1, ('>', 'urt'): 1, ('urt', 'to'): 1, ('be', 'perishing'): 1, ('perishing', 'perishable'): 1, ('perishable', 'supreme'): 1, ('supreme', 'court'): 2, ('court', 'and'): 1, ('and', 'shall'): 1, ('shall', 'he'): 1, ('he', 'made'): 1, ('made', 'withitinor'): 1, ('withitinor', 'liable'): 1, ('liable', 'to'): 1, ('to', 'deteriorate'): 1, ('deteriorate', 'or'): 1, ('or', 'depreciate'): 1, ('depreciate', 'or'): 1, ('or', 'when'): 1, ('when', 'thirty'): 1, ('thirty', 'days'): 1, ('days', 'of'): 1, ('the', 'rendering'): 1, ('rendering', 'of'): 1, ('the', 'decree'): 1, ('decree', 'apnever'): 1, ('apnever', 'the'): 1, ('the', 'etist'): 1, ('etist', 'ot'): 1, ('ot', 'keeping'): 1, ('keeping', 'th'): 1, ('th', 'same'): 1, ('same', 'shall'): 1, ('shall', 'l'): 1, ('l', '>'): 3, ('>', 'c'): 1, ('c', 'dis'): 1, ('dis', 'i'): 1, ('i', 'pealed'): 1, ('pealed', 'from'): 1, ('from', 'unhss'): 1, ('unhss', 'the'): 1, ('the', 'court'): 3, ('court', 'shall'): 1, ('shall', 'previouslynproportionate'): 1, ('previouslynproportionate', 'to'): 1, ('to', 'its'): 1, ('its', 'value'): 1, ('value', 'it'): 1, ('it', 'shall'): 1, ('be', 'the'): 1, ('duty', 'have'): 1, ('have', 'extended'): 1, ('extended', 'the'): 1, ('the', 'time'): 1, ('time', 'for'): 1, ('for', 'cause'): 1, ('cause', 'shown'): 1, ('shown', 'in'): 1, ('in', 'thnof'): 1, ('thnof', 'the'): 1, ('court', 'to'): 1, ('to', 'order'): 1, ('order', 'asale'): 1, ('asale', 'thereof'): 1, ('thereof', 'and'): 1, ('and', 'when'): 1, ('when', '|artit'): 1, ('|artit', 'ular'): 1, ('ular', 'case'): 1, ('case', 'and'): 1, ('and', 'the'): 2, ('the', 'supreme'): 1, ('court', 'kl|never'): 1, ('kl|never', 'after'): 1, ('after', 'the'): 1, ('the', 'return'): 1, ('return', 'day'): 1, ('day', 'on'): 1, ('the', 'liliel'): 1, ('liliel', 'all'): 1, ('all', 'the'): 1, ('the', 'always'): 1, ('always', 'l'): 1, ('>', 'e'): 2, ('e', 'open'): 1, ('open', 'fur'): 1, ('fur', 'the'): 1, ('the', 'entry'): 1, ('entry', 'of'): 1, ('of', 'sinh'): 1, ('sinh', 'uppealstnparties'): 1, ('uppealstnparties', 'in'): 1, ('in', 'interest'): 1, ('interest', 'who'): 1, ('who', 'have'): 1, ('have', 'appeared'): 1, ('appeared', 'in'): 1, ('the', 'such'): 1, ('such', 'appeals'): 1, ('appeals', 'may'): 1, ('may', 'l'): 1, ('e', 'claimed'): 1, ('claimed', 'whenever'): 1, ('whenever', 'thncause'): 1, ('thncause', 'shall'): 1, ('shall', 'iigree'): 1, ('iigree', 'thercfn'): 1, ('thercfn', 'the'): 1, ('court', 'is'): 1, ('is', 'author'): 1, ('author', '|amount'): 1, ('|amount', 'in'): 1, ('in', 'controversy'): 1, ('controversy', 'esieeis'): 1, ('esieeis', 'two'): 1, ('two', 'thonsan'): 1, ('thonsan', '<'): 1, ('<', '|nized'): 1, ('|nized', 'to'): 1, ('to', 'make'): 3, ('make', 'such'): 1, ('such', 'order'): 1, ('order', 'and'): 1, ('and', 'no'): 1, ('no', 'appeal'): 1, ('appeal', 'shall'): 1, ('shall', 'dollars'): 1, ('dollars', 'and'): 1, ('and', 'in'): 1, ('in', 'other'): 1, ('other', 'casesablythe'): 1, ('casesablythe', 'ceitihcate'): 1, ('ceitihcate', 'ofnoperate'): 1, ('ofnoperate', 'to'): 1, ('to', 'prevent'): 1, ('prevent', 'tfie'): 1, ('tfie', 'making'): 1, ('making', 'or'): 1, ('or', 'execution'): 1, ('execution', 'of'): 1, ('district', 'judge'): 1, ('judge', 'that'): 1, ('that', 'the'): 1, ('the', 'adjudication'): 1, ('adjudication', 'inviunsuch'): 1, ('inviunsuch', 'order'): 1, ('order', 'the'): 1, ('the', 'secretary'): 1, ('secretary', 'of'): 1, ('the', 'navy'): 1, ('navy', 'shall'): 1, ('shall', 'ves'): 1, ('ves', 'a'): 1, ('a', 'question'): 1, ('question', 'uf'): 1, ('uf', 'general'): 1, ('general', 'importancenemploy'): 1, ('importancenemploy', 'an'): 1, ('an', 'auctioneer'): 1, ('auctioneer', 'or'): 1, ('or', 'auctioneers'): 1, ('auctioneers', 'of'): 1, ('of', 'known'): 1, ('known', 'withstanding'): 1, ('withstanding', 'such'): 1, ('such', 'apiw'): 1, ('apiw', 'al'): 1, ('al', 'the'): 1, ('district', 'mintnskill'): 1, ('mintnskill', 'in'): 1, ('the', 'branch'): 1, ('branch', 'of'): 1, ('of', 'business'): 1, ('business', 'to'): 1, ('to', 'w'): 1, ('w', 'hich'): 1, ('hich', 'any'): 1, ('any', 'may'): 1, ('may', 'make'): 1, ('make', 'and'): 1, ('and', 'execute'): 1, ('execute', 'all'): 1, ('all', 'necessary'): 1, ('necessary', 'order'): 1, ('order', 'fefnsale'): 1, ('fefnsale', 'lertains'): 1, ('lertains', 'to'): 1, ('make', 'the'): 1, ('the', 'wile'): 1, ('wile', 'but'): 1, ('but', 'the'): 1, ('the', 'sale'): 1, ('sale', 'i'): 1, ('i', 'the'): 1, ('the', 'custody'): 1, ('custody', 'and'): 1, ('and', 'dis|m'): 1, ('dis|m', '>'): 1, ('>', 'sitl'): 1, ('sitl', 'of'): 1, ('of', 'th'): 1, ('th', 'puze'): 1, ('puze', 'propeity'): 1, ('propeity', 'inshall'): 1, ('inshall', 'be'): 1, ('be', 'conducted'): 1, ('conducted', 'nnder'): 1, ('nnder', 'the'): 1, ('the', 'sujk'): 1, ('sujk', 'rvfsfon'): 1, ('rvfsfon', 'of'): 1, ('of', 'j'): 1, ('j', 'ail'): 1, ('ail', 'iu'): 1, ('iu', 'case'): 1, ('case', 'of'): 1, ('of', 'appeal'): 1, ('appeal', 'from'): 1, ('from', 'a'): 1, ('a', 'tteeree'): 1, ('tteeree', 'of'): 1, ('of', 'eoadeinhnthe'): 1, ('eoadeinhnthe', 'nutrshal'): 1, ('nutrshal', 'and'): 1, ('the', 'crdlecting'): 1, ('crdlecting', 'and'): 1, ('and', 'deiwiiling'): 1, ('deiwiiling', 'i'): 1, ('i', 'natum'): 1, ('natum', 'may'): 1, ('may', 'stiil'): 1, ('stiil', 'prei'): 1, ('prei', 'to'): 1, ('make', 'a'): 1, ('a', 'deiree'): 1, ('deiree', 'ojnof'): 1, ('ojnof', 'the'): 1, ('the', 'gross'): 1, ('gross', 'proceerls'): 1, ('proceerls', 'shall'): 1, ('be', 'by'): 1, ('by', 'the'): 1, ('the', 'anction'): 1, ('anction', 'j'): 1, ('j', 'distribution'): 1, ('distribution', 'so'): 1, ('so', 'ftiras'): 1, ('ftiras', 'to'): 1, ('to', 'determine'): 1, ('determine', 'what'): 1, ('what', 'shareneer'): 1, ('shareneer', 'or'): 1, ('or', 'his'): 1, ('his', 'agent'): 1, ('agent', 'b'): 1, ('b', 'fore'): 1, ('fore', 'any'): 1, ('any', 'sale'): 1, ('sale', 'the'): 1, ('the', 'marshal'): 1, ('marshal', 'j'): 1, ('j', 'of'): 1, ('the', 'prize'): 1, ('prize', 'shall'): 1, ('shall', 'g'): 1, ('g', 'to'): 1, ('<', 'aptors'): 1, ('aptors', 'and'): 1, ('and', 'whatnshall'): 1, ('whatnshall', 'cause'): 1, ('cause', 'tull'): 1, ('tull', 'catalogues'): 1, ('catalogues', 'and'): 1, ('and', 'schedules'): 1, ('schedules', 'to'): 1, ('to', 'vessels'): 1, ('vessels', 'are'): 1, ('are', 'entitled'): 1, ('entitled', 'to'): 1, ('to', 'particulate'): 1, ('particulate', 'therein'): 1, ('therein', 'aofnprejuiretl'): 1, ('aofnprejuiretl', 'and'): 1, ('and', 'circulate'): 1, ('circulate', 'and'): 1, ('and', 'a'): 1, ('a', 'pv'): 1, ('pv', 'of'): 1, ('wuh', ''): 1, ('', 'sa'): 1, ('sa', 'lkofvaluable'): 1, ('lkofvaluable', 'unimpbovd'): 1, ('unimpbovd', 'relnjsiatf'): 1, ('relnjsiatf', 'on'): 1, ('the', 'north'): 1, ('north', 'bideof'): 1, ('bideof', 'stnnear'): 1, ('stnnear', 'd'): 1, ('d', 'st'): 1, ('st', 'r'): 1, ('r', '>'): 1, ('>', 'et'): 1, ('et', 'northwestnby'): 1, ('northwestnby', 'virtue'): 1, ('virtue', 'ol'): 1, ('ol', 'a'): 1, ('a', 'deed'): 1, ('deed', 'of'): 2, ('of', 'trust'): 2, ('trust', 'recorded'): 1, ('recorded', 'in'): 1, ('in', 'lllier'): 1, ('lllier', 'nno'): 1, ('nno', 'folio'): 1, ('folio', 'et'): 1, ('et', 'seq'): 1, ('seq', 'one'): 1, ('the', 'land'): 1, ('land', '®nrecords'): 1, ('®nrecords', 'of'): 1, ('district', 'of'): 1, ('of', 'columbia'): 1, ('columbia', 'and'): 1, ('and', 'andecree'): 1, ('andecree', 'of'): 1, ('the', 'bupreme'): 1, ('bupreme', 'court'): 1, ('court', 'of'): 1, ('district', 'ofncolumbia'): 1, ('ofncolumbia', 'tasked'): 1, ('tasked', 'in'): 1, ('in', 'equity'): 1, ('equity', 'cause'): 1, ('cause', 'no'): 1, ('no', 'junen'): 1, ('junen', 'th'): 1, ('th', 'we'): 1, ('we', 'will'): 1, ('will', 'on'): 1, ('on', 'friday'): 1, ('friday', 'the'): 1, ('the', 'b'): 1, ('b', 'ofnjune'): 1, ('ofnjune', 'at'): 1, ('at', 'oclock'): 1, ('oclock', 'p'): 1, ('p', 'n'): 1, ('n', '>'): 1, ('>', 'in'): 1, ('in', 'front'): 1, ('front', 'of'): 1, ('of', 'thenpitmles'): 1, ('thenpitmles', 'seb'): 1, ('seb', 'at'): 1, ('at', 'pubi'): 1, ('pubi', 'c'): 1, ('c', 'auction'): 1, ('auction', 'lot'): 1, ('lot', 'in'): 1, ('in', 'square'): 1, ('square', 'nin'): 1, ('nin', 'tbe'): 1, ('tbe', 'city'): 1, ('city', 'of'): 1, ('of', 'washington'): 1, ('washington', 'which'): 1, ('which', 'said'): 1, ('said', 'lot'): 1, ('lot', 'uniinnpioved'): 1, ('uniinnpioved', 'containing'): 1, ('containing', 'abou'): 1, ('abou', 'square'): 1, ('square', 'feet'): 1, ('feet', 'ofnground'): 1, ('ofnground', 'will'): 1, ('will', 'be'): 5, ('be', 'subdivided'): 1, ('subdivided', 'into'): 1, ('into', 'tnree'): 1, ('tnree', 'lots'): 1, ('lots', 'each'): 1, ('each', 'ofnwhich'): 1, ('ofnwhich', 'will'): 1, ('will', 'have'): 1, ('a', 'frolume'): 1, ('frolume', 'of'): 1, ('of', 'about'): 1, ('about', 'feet'): 1, ('feet', 'ou'): 1, ('ou', 'instreet'): 1, ('instreet', 'and'): 1, ('and', 'will'): 1, ('be', 'soldjnterms'): 1, ('soldjnterms', 'of'): 1, ('of', 'sale'): 3, ('sale', 'onetblrd'): 1, ('onetblrd', 'togethor'): 1, ('togethor', 'with'): 1, ('with', 'the'): 1, ('the', 'ex¬npenses'): 1, ('ex¬npenses', 'of'): 1, ('sale', 'in'): 1, ('in', 'cash'): 1, ('cash', 'the'): 1, ('the', 'residue'): 1, ('residue', 'in'): 1, ('in', 'three'): 1, ('three', 'equalnpay'): 1, ('equalnpay', 'n'): 1, ('n', 'ents'): 1, ('ents', 'at'): 1, ('at', 'six'): 1, ('six', 'twelve'): 1, ('twelve', 'and'): 1, ('and', 'eighteen'): 1, ('eighteen', 'months'): 1, ('months', 're¬nspectively'): 1, ('re¬nspectively', 'for'): 1, ('for', 'which'): 1, ('which', 'tbe'): 1, ('tbe', 'notes'): 1, ('notes', 'of'): 1, ('the', 'purchasernbearing'): 1, ('purchasernbearing', 'interest'): 1, ('interest', 'from'): 1, ('the', 'day'): 1, ('day', 'of'): 1, ('sale', 'at'): 1, ('at', 'per'): 1, ('per', 'centnper'): 1, ('centnper', 'ainum'): 1, ('ainum', 'p'): 1, ('p', 'table'): 1, ('table', 'semiannually'): 1, ('semiannually', 'and'): 1, ('and', 'secured'): 1, ('secured', 'byna'): 1, ('byna', 'deed'): 1, ('trust', 'on'): 1, ('the', 'property'): 2, ('property', 'sold'): 1, ('sold', 'will'): 1, ('be', 'takennor'): 1, ('takennor', 'the'): 1, ('the', 'purchaser'): 2, ('purchaser', 'may'): 1, ('may', 'pay'): 1, ('pay', 'cash'): 1, ('cash', 'in'): 1, ('in', 'full'): 1, ('full', 'at'): 1, ('at', 'nls'): 1, ('nls', 'op¬ntion'): 1, ('op¬ntion', 'all'): 1, ('all', 'conveyancing'): 1, ('conveyancing', 'and'): 1, ('and', 'recording'): 1, ('recording', 'will'): 1, ('be', 'atnthe'): 1, ('atnthe', 'cost'): 1, ('cost', 'of'): 1, ('purchaser', 'and'): 1, ('and', 'if'): 1, ('if', 'the'): 1, ('the', 'terms'): 1, ('terms', 'of'): 1, ('of', 'saenshall'): 1, ('saenshall', 'not'): 1, ('not', 'lie'): 1, ('lie', 'complied'): 1, ('complied', 'with'): 1, ('with', 'in'): 1, ('in', 'ave'): 1, ('ave', 'days'): 1, ('days', 'after'): 1, ('after', 'thentale'): 1, ('thentale', 'the'): 1, ('property', 'will'): 1, ('will', 'nold'): 1, ('nold', 'at'): 1, ('at', 'the'): 1, ('the', 'risk'): 1, ('risk', 'and'): 1, ('and', 'cotnof'): 1, ('cotnof', 'tbe'): 1, ('tbe', 'defaulting'): 1, ('defaulting', 'purchaser'): 1, ('purchaser', 'a'): 1, ('a', 'deposit'): 1, ('deposit', 'of'): 1, ('of', 'f'): 1, ('f', 'orn'): 1, ('orn', 'c'): 1, ('c', 'n'): 1, ('n', 'each'): 1, ('each', 'sulidivlded'): 1, ('sulidivlded', 'lot'): 1, ('lot', 'will'): 1, ('be', 'required'): 1, ('required', 'at'): 1, ('the', ''): 1, ('', 'god'): 1, ('god', 'includes'): 1, ('includes', 'all'): 1, ('all', 'and'): 1, ('and', 'would'): 1, ('would', 'we'): 1, ('we', 'notngrieve'): 1, ('notngrieve', 'if'): 1, ('if', 'he'): 1, ('he', 'left'): 1, ('left', 'any'): 1, ('any', 'out'): 1, ('out', 'if'): 1, ('if', 'godnthought'): 1, ('godnthought', 'some'): 1, ('some', 'too'): 1, ('too', 'large'): 1, ('large', 'or'): 1, ('or', 'too'): 1, ('too', 'emailnespecially'): 1, ('emailnespecially', 'if'): 1, ('if', 'they'): 1, ('they', 'were'): 1, ('were', 'our'): 1, ('our', 'childrenncjod'): 1, ('childrenncjod', 'would'): 1, ('would', 'not'): 1, ('not', 'say'): 1, ('say', 'that'): 1, ('that', 'jesse'): 1, ('jesse', 'and'): 1, ('and', 'ruahnand'): 1, ('ruahnand', 'willie'): 1, ('willie', 'should'): 1, ('go', 'to'): 1, ('to', 'sabbathnschool'): 1, ('sabbathnschool', 'but'): 1, ('but', 'george'): 1, ('george', 'and'): 1, ('and', 'james'): 1, ('james', 'andnmarj'): 1, ('andnmarj', 'are'): 1, ('are', 'too'): 1, ('too', 'old'): 1, ('old', 'our'): 1, ('our', 'hair'): 1, ('hair', 'may'): 1, ('may', 'bencomp'): 1} queue: deque(['bencomp', 'silvered', 'yet'], maxlen=3) vocab: {'proper', 'saldnhow', 'thenpitmles', 'after', 'feettoitwhenigetinitnhe', 'bunches', 'uniinnpioved', 'tnree', 'being', 'from', 'sale', 'stato', 'who', 'certainly', 'get', 'makingnsuch', 'thentop', 'execution', 'known', 'floor', 'childrenncjod', 'old', 'bulk', 'relnjsiatf', 'excellent', 'statesman', 'appeal', 'uppealstnparties', 'nin', 'branch', 'somo', 'ansmaa', 'thercfn', 'w', 'blanket', 'depreciate', 'nls', 'organization', 'recording', 'scat', 'propeity', 'conducted', 'day', 'longer', 'crack', 'eatingnflannel', 'general', 'always', 'casesablythe', 'fore', 'entitled', 'containing', 'eighteen', 'piatt', 'which', 'represented', 'auctioneer', 'imagine', 'lertains', 'ofncolumbia', 'seb', 'proceedings', 'r', 'op¬ntion', 'have', 'some', 'are', 'b', 'soup', 'plate', 'post', 'j', 'withitinor', 'washington', 'thnof', 'between', '<', 'execute', 'mr', 'everynwhere', 'come', 'n', 'without', 'junen', 'case', 'werentimely', 'wile', 'refreshlin', 'therein', 'keeping', 'you', 'nearner', 'equity', 'fiom', 'wuh', 'god', 'never', 'gotnone', 'aminthemorningsonthey', 'waiter', 'noted', 'rendering', 'would', 'settlo', 'tongetupat', 'et', 'time', 'with', 'particulate', 'schedules', 'elihu', 'puze', 'entry', 'unnless', 'on', 'york', 'now', 'want', 'should', 'columbia', 'acncredited', 't', 'e', 're¬nspectively', 'than', 'governnments', 'st', 'nad', 'includes', 'instreet', 'ular', 'too', 'and', 'legislaturesnit', 'direct', 'halfnof', 'wenwere', 'getnin', 'woke', 'all', 'front', 'lllier', 'property', 'prei', 'sa', 'feet', 'asale', 'cotnof', 'nold', 'prize', 'opon', '®nrecords', 'mustnhave', 'interest', 'uf', 'withstanding', 'eoadeinhnthe', 'say', 'large', 'bupreme', 'small', 'they', 'directly', 'perishable', 'thereof', 'priae', 'read', 'district', 'orn', 'sinh', 'make', 'cause', 'tbe', 'six', 'empirqnstate', 'pains', 'sandwichnafter', 'navy', 'at', 'signed', 'jesse', 'hair', 'wentnover', 'used', 'ojnof', 'togethor', 'been', 'claimed', 'silvered', 'immediatenproblems', 'aptors', 'senatorial', 'andntheir', 'not', 'tasked', 'one', 'may', 'deteriorate', 'supreme', 'table', 'reflections', 'pealed', 'shown', '|artit', 'purchasernbearing', 'boot', 'sold', 'said', 'senate', 'inviunsuch', 'whatnshall', 'themna', 'gnto', 'l', 'catalogues', 'tried', 'urt', 'prevent', 'can', 'notes', 'secretary', 'longnenough', 'decree', 'ownnwho', 'sujk', 'bentough', 'nno', 'clerk', 'outset', 'so', 'deiree', 'sitl', 'up', 'perspective', 'oclock', 'tothis', 'broughtnit', 'sabbathnschool', 'onensmelt', 'apiw', 'ruahnand', 'ot', 'remind', 'andecree', 'five', 'adjudication', 'cakes', 'ves', 'ail', 'lkofvaluable', 'was', 'good', 'as', '|nized', 'though', 'of', 'distribution', 'while', 'express', 'thncause', 'own', 'duties', 'sure', 'esieeis', 'by', 'awfulnheadache', 'to', 'electorate', 'bananasnthey', 'lot', 'nownwe', 'risk', 'middle', 'any', 'centnper', 'folio', 'your', 'ho', 'place', 'terms', 'author', 'occupied', 'manager', 'atnthe', 'way', 'pubi', 'court', 'left', 'george', 'north', 'business', 'flatts', 'eflort', 'he', 'marshal', 'accustomed', 'vain', 'stage', 'per', 'first', 'national', 'frolume', 'making', 'soldjnterms', '|amount', 'ex¬npenses', 'andnmarj', 'courts', 'something', 'next', 'this', 'other', 'auctioneers', 'room', 'isigovemed', 'abou', 'her', 'very', 'complied', 'heard', 'cash', 'linesnfor', 'bed', 'residue', 'seq', 'twelve', 'saidni', 'forna', 'offices', 'shall', 'lie', 'somewhere', 'defaulting', 'train', 'country', 'declared', 'new', 'that', 'd', 'circulate', 'armistice', 'hag', 'fur', 'then', 'ou', 'dreamt', 'road', 'for', 'unitened', 'thnfoundiy', 'figures', 'cost', 'such', 'gross', 'it', 'nowherenhe', 'sulidivlded', 'ainum', 'dis|m', 'those', 'determine', 'skidnwaiter', 'appeals', 'etist', 'question', 'attic', 'goodnthings', 'years', 'younfcavo', 'be', 'fine', 'trust', 'secured', 'order', 'hear', 'godnthought', 'ofnoperate', 'advice', 'when', 'gone', 'value', 'thentale', 'got', 'fefnsale', 'think', 'full', 'wo', '+henbrought', 'side', 'noticento', 'somonmental', 'ceitihcate', 'extended', 'crdlecting', 'gave', 'told', 'agent', 'mb', 'pieliesaidnit', 'lovely', 'two', 'in', 'open', 'had', 'thirty', 'thought', 'younhappen', 'pv', 'friday', 'nationally', 'measure', 'northwestnby', 'semiannually', 'a', 'g', 'where', 'slidellnthat', 'ndell', 'if', 'night', 'tull', 'steaks', 'iigree', 'thenbreakfast', 'compannies', 'bencomp', 'says', 'byna', 'convictions', 'toughnpeople', 'perishing', 'lisntened', 'return', 'emailnespecially', 'forntho', 'rvfsfon', 'into', 'required', 'reasoned', 'pay', 'squash', 'th', 'land', 'tfie', 'purchaser', 'their', 'ofnground', 'its', 'andnget', 'machinnations', 'nnder', 'albany', 'bo', 'baa', 'lots', 'i', 'about', '>', 'deiwiiling', 'down', 'illnaddtwo', 'ofnthe', 'lit', 'condemn', 'people', 'mixed', 'equalnpay', 'thereby', 'c', 'appeared', 'asked', 'roomnthat', 'gotnpigs', 'possibly', 'bideof', 'willie', 'fillning', 'myselfnwhere', 'ofnwhich', 'codfish', 'dollars', 'judge', 'saenshall', 'states', 'vessels', 'ride', 'three', 'there', 'evidence', 'novnelty', 'proceerls', 'anbed', 'thosenminor', 'months', 'rheumatismnmakes', 'tonthink', 'parcels', 'dis', 'last', 'could', 'p', 'duty', 'each', 'anywhere', 'reached', 'fortunqnwhich', 'days', 'obeednattempt', 'political', 'tho', 'mintnskill', 'conveyancing', 'ol', 'the', 'thonsan', 'me', 'stnnear', 'myself', 'aboutnit', 'an', 'roomsnthat', 'aofnprejuiretl', 'politicians', 'ftiras', 'set', 'dont', 'f', 'evernwas', 'thenbed', 'stands', 'virtue', 'controversy', 'morning', 'necessary', 'well', 'quality', 'ofnjune', 'his', 'stiil', 'legislature', 'james', 'battle', 'inshall', 'grown', 'bootnto', 'bringhimselfninto', 'hich', 'square', 'liliel', 'tteeree', 'atntho', 'miles', 'horizons', 'deposit', 'seat', 'natum', 'liable', 'kl|never', 'she', 'onetblrd', 'use', 'unitned', 'we', 'shareneer', 'made', 'previouslynproportionate', 'accordning', 'state', 'must', 'hotel', 'importancenemploy', 'takennor', 'best', 'walk', 'yet', 'custody', 'unimpbovd', 'leader', 'or', 'rheumaticnpains', 'giving', 'came', 'is', 'city', 'ideas', 'ave', 'itnwas', 'unhss', 'improvingnthe', 'glad', 'out', 'whenever', 'wenare', 'wholly', 'will', 'were', 'no', 'tonguide', 'auction', 'causes', 'notngrieve', 'politicaln', 'onnof', 'recorded', 'andni', 'anction', 'iu', 'go', 'same', 'else', 'deed', 'nutrshal', 'wrong', 'thirst', 'apnever', 'al', 'pumpkin', 'what', 'among', 'sheet', 'subdivided', 'ents', 'saysnim', 'stops', 'hugelynupon', 'our', 'but', 'elsewherenfrom', 'tonthe', 'willnfor', 'address'} unigram: {'came': 1, 'fiom': 1, 'the': 71, 'last': 2, 'place': 4, 'tothis': 1, 'and': 32, 'this': 3, 'is': 8, 'where': 4, 'wenwere': 2, 'first': 1, 'road': 1, 'i': 26, 'evernwas': 1, 'on': 9, 'you': 6, 'can': 2, 'ride': 1, 'elsewherenfrom': 1, 'anywhere': 2, 'be': 14, 'nowherenhe': 1, 'says': 1, 'while': 1, 'train': 1, 'stops': 2, 'everynwhere': 1, 'it': 6, 'never': 1, 'unnless': 1, 'its': 2, 'somewhere': 1, 'well': 3, 'saysnim': 1, 'glad': 1, 'to': 28, 'hear': 1, 'that': 11, 'but': 3, 'accordning': 1, 'your': 1, 'figures': 1, 'left': 2, 'myselfnwhere': 1, 'was': 7, 'which': 4, 'five': 1, 'miles': 1, 'nearner': 1, 'myself': 1, 'than': 1, 'when': 5, 'we': 3, 'are': 3, 'nownwe': 1, 'have': 9, 'now': 3, 'reached': 1, 'slidellnthat': 1, 'a': 19, 'fine': 1, 'people': 1, 'down': 1, 'there': 2, 'remind': 1, 'me': 4, 'of': 46, 'bananasnthey': 1, 'come': 2, 'go': 3, 'in': 23, 'bunches': 1, 'ndell': 1, 'used': 1, 'noted': 2, 'for': 6, 'her': 1, 'toughnpeople': 1, 'she': 1, 'bentough': 1, 'steaks': 1, 'certainly': 1, 'gotnone': 1, 'waiter': 3, 'broughtnit': 1, 'so': 3, 'small': 1, 'thought': 1, 'itnwas': 1, 'crack': 1, 'plate': 1, 'skidnwaiter': 1, 'what': 3, 'else': 1, 'got': 2, '+henbrought': 1, 'two': 2, 'codfish': 1, 'onensmelt': 1, 'said': 8, 'gotnpigs': 1, 'feet': 3, 'he': 7, 'no': 5, 'rheumatismnmakes': 1, 'walk': 1, 'way': 1, 'saldnhow': 1, 'pumpkin': 1, 'pieliesaidnit': 1, 'all': 5, 'squash': 1, 'best': 1, 'could': 2, 'getnin': 1, 'hotel': 2, 'soup': 1, 'sandwichnafter': 1, 'table': 3, 'battle': 1, 'andni': 1, 'signed': 1, 'an': 4, 'armistice': 1, 'then': 1, 'wentnover': 1, 'clerk': 1, 'asked': 1, 'forna': 1, 'room': 3, 'with': 7, 'or': 8, 'without': 1, 'anbed': 1, 'bed': 2, 'saidni': 1, 'dont': 1, 'think': 3, 'longnenough': 1, 'illnaddtwo': 1, 'feettoitwhenigetinitnhe': 1, 'gave': 1, 'lovely': 1, 'thentop': 1, 'floor': 1, 'one': 3, 'those': 2, 'roomsnthat': 1, 'stands': 1, 'each': 3, 'side': 2, 'if': 5, 'younhappen': 1, 'get': 1, 'up': 4, 'middle': 2, 'ofnthe': 1, 'night': 2, 'want': 1, 'sure': 1, 'andnget': 1, 'roomnthat': 1, 'dreamt': 1, 'eatingnflannel': 1, 'cakes': 1, 'woke': 1, 'halfnof': 1, 'blanket': 1, 'gone': 1, 'mustnhave': 1, 'wrong': 1, 'thenbed': 1, 'next': 2, 'morning': 1, 'had': 3, 'awfulnheadache': 1, 'told': 2, 'manager': 1, 'aboutnit': 1, 'rheumaticnpains': 1, 'onnof': 1, 'attic': 1, 'pains': 1, 'nad': 1, 'tongetupat': 1, 'aminthemorningsonthey': 1, 'use': 1, 'sheet': 1, 'set': 1, 'thenbreakfast': 1, 'mb': 1, 'boot': 2, 'political': 3, 'obeednattempt': 1, 'imagine': 1, 'piatt': 1, 'makingnsuch': 1, 'address': 1, 'as': 2, 'elihu': 1, 'bootnto': 1, 'york': 2, 'legislature': 1, 'younfcavo': 1, 'measure': 1, 'tho': 12, 'good': 1, 'fortunqnwhich': 1, 'baa': 1, 'at': 9, 'empirqnstate': 1, 'being': 1, 'represented': 1, 'unitned': 1, 'states': 1, 'senate': 1, 'by': 4, 'statesman': 1, 'atntho': 1, 'very': 1, 'outset': 1, 'mr': 1, 'declared': 1, 'forntho': 1, 'parcels': 1, 'post': 1, 'thereby': 1, 'giving': 1, 'noticento': 1, 'country': 1, 'express': 1, 'compannies': 1, 'longer': 1, 'own': 1, 'senatorial': 2, 'scat': 1, 'acncredited': 1, 'new': 2, 'seat': 1, 'willnfor': 1, 'ho': 1, 'six': 2, 'years': 1, 'bo': 1, 'occupied': 1, 'ansmaa': 1, 'who': 3, 'hag': 1, 'convictions': 1, 'his': 2, 'ownnwho': 1, 'isigovemed': 1, 'reasoned': 1, 'politicaln': 1, 'ideas': 1, 'grown': 1, 'accustomed': 1, 'tonthink': 1, 'nationally': 1, 'somonmental': 1, 'eflort': 1, 'bringhimselfninto': 1, 'proper': 1, 'perspective': 1, 'thosenminor': 1, 'duties': 1, 'such': 4, 'fillning': 1, 'offices': 1, 'bulk': 1, 'hugelynupon': 1, 'horizons': 1, 'flatts': 1, 'andntheir': 1, 'lit': 1, 'albany': 1, 'politicians': 1, 'wenare': 1, 'tried': 1, 'read': 1, 'between': 1, 'linesnfor': 1, 'evidence': 1, 'they': 4, 'among': 1, 'themna': 1, 'organization': 1, 'leader': 1, 'somo': 1, 'tonguide': 1, 'direct': 1, 'their': 1, 'machinnations': 1, 'settlo': 1, 'goodnthings': 1, 'should': 2, 'wo': 1, 'lisntened': 1, 'vain': 1, 'heard': 1, 'werentimely': 1, 'reflections': 1, 'opon': 1, 'immediatenproblems': 1, 'stato': 2, 'national': 1, 'governnments': 1, 'mixed': 1, 'excellent': 1, 'advice': 1, 'tonthe': 1, 'electorate': 1, 'duty': 2, 'improvingnthe': 1, 'quality': 1, 'legislaturesnit': 1, 'must': 1, 'been': 1, 'something': 1, 'novnelty': 1, 'though': 1, 'possibly': 1, 'not': 3, 'wholly': 1, 'refreshlin': 1, 'gnto': 1, 'thirst': 1, 'whenever': 2, 'any': 5, 'prize': 2, 'property': 3, 'shall': 12, 'condemn': 1, 'appeals': 2, 'from': 4, 'district': 5, 'courts': 1, 'unitened': 1, 'stage': 1, 'proceedings': 1, 'j': 4, 'state': 1, 'priae': 1, 'causes': 1, 'directly': 1, 'thnfoundiy': 1, '<': 3, 't': 1, '>': 7, 'urt': 1, 'perishing': 1, 'perishable': 1, 'supreme': 2, 'court': 6, 'made': 1, 'withitinor': 1, 'liable': 1, 'deteriorate': 1, 'depreciate': 1, 'thirty': 1, 'days': 2, 'rendering': 1, 'decree': 1, 'apnever': 1, 'etist': 1, 'ot': 1, 'keeping': 1, 'th': 3, 'same': 1, 'l': 3, 'c': 3, 'dis': 1, 'pealed': 1, 'unhss': 1, 'previouslynproportionate': 1, 'value': 1, 'extended': 1, 'time': 1, 'cause': 3, 'shown': 1, 'thnof': 1, 'order': 4, 'asale': 1, 'thereof': 1, '|artit': 1, 'ular': 1, 'case': 2, 'kl|never': 1, 'after': 2, 'return': 1, 'day': 2, 'liliel': 1, 'always': 1, 'e': 2, 'open': 1, 'fur': 1, 'entry': 1, 'sinh': 1, 'uppealstnparties': 1, 'interest': 2, 'appeared': 1, 'may': 5, 'claimed': 1, 'thncause': 1, 'iigree': 1, 'thercfn': 1, 'author': 1, '|amount': 1, 'controversy': 1, 'esieeis': 1, 'thonsan': 1, '|nized': 1, 'make': 4, 'appeal': 2, 'dollars': 1, 'other': 1, 'casesablythe': 1, 'ceitihcate': 1, 'ofnoperate': 1, 'prevent': 1, 'tfie': 1, 'making': 1, 'execution': 1, 'judge': 1, 'adjudication': 1, 'inviunsuch': 1, 'secretary': 1, 'navy': 1, 'ves': 1, 'question': 1, 'uf': 1, 'general': 1, 'importancenemploy': 1, 'auctioneer': 1, 'auctioneers': 1, 'known': 1, 'withstanding': 1, 'apiw': 1, 'al': 1, 'mintnskill': 1, 'branch': 1, 'business': 1, 'w': 1, 'hich': 1, 'execute': 1, 'necessary': 1, 'fefnsale': 1, 'lertains': 1, 'wile': 1, 'sale': 5, 'custody': 1, 'dis|m': 1, 'sitl': 1, 'puze': 1, 'propeity': 1, 'inshall': 1, 'conducted': 1, 'nnder': 1, 'sujk': 1, 'rvfsfon': 1, 'ail': 1, 'iu': 1, 'tteeree': 1, 'eoadeinhnthe': 1, 'nutrshal': 1, 'crdlecting': 1, 'deiwiiling': 1, 'natum': 1, 'stiil': 1, 'prei': 1, 'deiree': 1, 'ojnof': 1, 'gross': 1, 'proceerls': 1, 'anction': 1, 'distribution': 1, 'ftiras': 1, 'determine': 1, 'shareneer': 1, 'agent': 1, 'b': 2, 'fore': 1, 'marshal': 1, 'g': 1, 'aptors': 1, 'whatnshall': 1, 'tull': 1, 'catalogues': 1, 'schedules': 1, 'vessels': 1, 'entitled': 1, 'particulate': 1, 'therein': 1, 'aofnprejuiretl': 1, 'circulate': 1, 'pv': 1, 'wuh': 1, 'sa': 1, 'lkofvaluable': 1, 'unimpbovd': 1, 'relnjsiatf': 1, 'north': 1, 'bideof': 1, 'stnnear': 1, 'd': 1, 'st': 1, 'r': 1, 'et': 2, 'northwestnby': 1, 'virtue': 1, 'ol': 1, 'deed': 2, 'trust': 2, 'recorded': 1, 'lllier': 1, 'nno': 1, 'folio': 1, 'seq': 1, 'land': 1, '®nrecords': 1, 'columbia': 1, 'andecree': 1, 'bupreme': 1, 'ofncolumbia': 1, 'tasked': 1, 'equity': 1, 'junen': 1, 'will': 8, 'friday': 1, 'ofnjune': 1, 'oclock': 1, 'p': 2, 'n': 3, 'front': 1, 'thenpitmles': 1, 'seb': 1, 'pubi': 1, 'auction': 1, 'lot': 3, 'square': 2, 'nin': 1, 'tbe': 3, 'city': 1, 'washington': 1, 'uniinnpioved': 1, 'containing': 1, 'abou': 1, 'ofnground': 1, 'subdivided': 1, 'into': 1, 'tnree': 1, 'lots': 1, 'ofnwhich': 1, 'frolume': 1, 'about': 1, 'ou': 1, 'instreet': 1, 'soldjnterms': 1, 'onetblrd': 1, 'togethor': 1, 'ex¬npenses': 1, 'cash': 2, 'residue': 1, 'three': 1, 'equalnpay': 1, 'ents': 1, 'twelve': 1, 'eighteen': 1, 'months': 1, 're¬nspectively': 1, 'notes': 1, 'purchasernbearing': 1, 'per': 1, 'centnper': 1, 'ainum': 1, 'semiannually': 1, 'secured': 1, 'byna': 1, 'sold': 1, 'takennor': 1, 'purchaser': 3, 'pay': 1, 'full': 1, 'nls': 1, 'op¬ntion': 1, 'conveyancing': 1, 'recording': 1, 'atnthe': 1, 'cost': 1, 'terms': 1, 'saenshall': 1, 'lie': 1, 'complied': 1, 'ave': 1, 'thentale': 1, 'nold': 1, 'risk': 1, 'cotnof': 1, 'defaulting': 1, 'deposit': 1, 'f': 1, 'orn': 1, 'sulidivlded': 1, 'required': 1, 'god': 1, 'includes': 1, 'would': 2, 'notngrieve': 1, 'out': 1, 'godnthought': 1, 'some': 1, 'too': 3, 'large': 1, 'emailnespecially': 1, 'were': 1, 'our': 2, 'childrenncjod': 1, 'say': 1, 'jesse': 1, 'ruahnand': 1, 'willie': 1, 'sabbathnschool': 1, 'george': 1, 'james': 1, 'andnmarj': 1, 'old': 1, 'hair': 1, 'bencomp': 1, 'silvered': 1, 'yet': 1} item: ('bencomp', 'silvered') bigram: {('', 'came'): 2, ('came', 'fiom'): 1, ('fiom', 'the'): 1, ('the', 'last'): 1, ('last', 'place'): 1, ('place', 'tothis'): 1, ('tothis', 'place'): 1, ('place', 'and'): 1, ('and', 'this'): 1, ('this', 'place'): 1, ('place', 'is'): 1, ('is', 'where'): 1, ('where', 'wenwere'): 1, ('wenwere', 'this'): 1, ('this', 'is'): 1, ('is', 'the'): 2, ('the', 'first'): 1, ('first', 'road'): 1, ('road', 'i'): 1, ('i', 'evernwas'): 1, ('evernwas', 'on'): 1, ('on', 'where'): 1, ('where', 'you'): 1, ('you', 'can'): 1, ('can', 'ride'): 1, ('ride', 'elsewherenfrom'): 1, ('elsewherenfrom', 'anywhere'): 1, ('anywhere', 'and'): 1, ('and', 'be'): 1, ('be', 'nowherenhe'): 1, ('nowherenhe', 'says'): 1, ('says', 'while'): 1, ('while', 'this'): 1, ('this', 'train'): 1, ('train', 'stops'): 1, ('stops', 'everynwhere'): 1, ('everynwhere', 'it'): 1, ('it', 'never'): 1, ('never', 'stops'): 1, ('stops', 'anywhere'): 1, ('anywhere', 'unnless'): 1, ('unnless', 'its'): 1, ('its', 'somewhere'): 1, ('somewhere', 'well'): 1, ('well', 'i'): 2, ('i', 'saysnim'): 1, ('saysnim', 'glad'): 1, ('glad', 'to'): 1, ('to', 'hear'): 1, ('hear', 'that'): 1, ('that', 'but'): 1, ('but', 'accordning'): 1, ('accordning', 'to'): 1, ('to', 'your'): 1, ('your', 'figures'): 1, ('figures', 'i'): 1, ('i', 'left'): 1, ('left', 'myselfnwhere'): 1, ('myselfnwhere', 'was'): 1, ('was', 'which'): 1, ('which', 'is'): 1, ('is', 'five'): 1, ('five', 'miles'): 1, ('miles', 'nearner'): 1, ('nearner', 'to'): 1, ('to', 'myself'): 1, ('myself', 'than'): 1, ('than', 'i'): 1, ('i', 'was'): 2, ('was', 'when'): 1, ('when', 'wenwere'): 1, ('wenwere', 'where'): 1, ('where', 'we'): 1, ('we', 'are'): 1, ('are', 'nownwe'): 1, ('nownwe', 'have'): 1, ('have', 'now'): 1, ('now', 'reached'): 1, ('reached', 'slidellnthat'): 1, ('slidellnthat', 'a'): 1, ('a', 'fine'): 1, ('fine', 'place'): 1, ('place', 'the'): 1, ('the', 'people'): 1, ('people', 'down'): 1, ('down', 'there'): 1, ('there', 'remind'): 1, ('remind', 'me'): 1, ('me', 'of'): 1, ('of', 'bananasnthey'): 1, ('bananasnthey', 'come'): 1, ('come', 'and'): 1, ('and', 'go'): 1, ('go', 'in'): 1, ('in', 'bunches'): 1, ('bunches', 'ndell'): 1, ('ndell', 'used'): 1, ('used', 'to'): 1, ('to', 'be'): 3, ('be', 'noted'): 1, ('noted', 'for'): 2, ('for', 'her'): 1, ('her', 'toughnpeople'): 1, ('toughnpeople', 'now'): 1, ('now', 'she'): 1, ('she', 'is'): 1, ('is', 'noted'): 1, ('for', 'bentough'): 1, ('bentough', 'steaks'): 1, ('steaks', 'well'): 1, ('i', 'certainly'): 1, ('certainly', 'gotnone'): 1, ('gotnone', 'there'): 1, ('there', 'when'): 1, ('when', 'the'): 1, ('the', 'waiter'): 2, ('waiter', 'broughtnit'): 1, ('broughtnit', 'in'): 1, ('in', 'it'): 1, ('it', 'was'): 2, ('was', 'so'): 1, ('so